From a38227e0775edc267175dfcbd1e04e630dbe3c55 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 17 Feb 2002 17:53:11 +0000 Subject: [PATCH] COMMON_NOUI_LIBS shouldn't include $INTLLIBS, it's not needed anymore and it's not even set anywhere, except in local environemnt where it may break make.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2508 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 41c1a9cd..95244753 100644 --- a/configure.in +++ b/configure.in @@ -712,7 +712,7 @@ done FE_COMMON_LIBS="$FE_COMMON_LIBS../fe-common/core/libfe_common_core.a" dnl ** common libraries needed by frontends -COMMON_NOUI_LIBS="$CHAT_LIBS $CORE_LIBS $INTLLIBS" +COMMON_NOUI_LIBS="$CHAT_LIBS $CORE_LIBS" COMMON_LIBS="$FE_COMMON_LIBS $COMMON_NOUI_LIBS" AC_SUBST(COMMON_NOUI_LIBS) AC_SUBST(COMMON_LIBS)