From 4c80028df5b114ba743a2045c39d28e035f51665 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 21 Jan 2001 00:49:04 +0000 Subject: [PATCH] Update Makefile.ams and configure.in to work with new layout. --- configure.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index b72f82d..596b577 100644 --- a/configure.in +++ b/configure.in @@ -141,15 +141,20 @@ AC_SUBST(GNET_LIBS) # Need gnome-xml 1 AC_PATH_PROG(XML_CONFIG,xml-config,no) if test x$XML_CONFIG = xno; then - AC_MSG_ERROR(Couldn't find xml-config) + AC_MSG_ERROR(Cannot find xml-config) fi XML_LIBS=`xml-config --libs` XML_CFLAGS=`xml-config --cflags` - +LIBS="$LIBS $XML_LIBS" +CFLAGS="$CFLAGS $XML_CFLAGS" AC_SUBST(XML_LIBS) AC_SUBST(XML_CFLAGS) +# Need popt +AC_CHECK_LIB(popt, poptGetContext,, AC_MSG_ERROR([popt is required])) + + # Need in.h and tcp.h for setting of TCP_NODELAY AC_CHECK_HEADERS(netinet/in.h netinet/tcp.h) @@ -176,6 +181,8 @@ fi AC_OUTPUT([ Makefile src/Makefile + src/soup-core/Makefile + src/soup-wsdl/Makefile tests/Makefile ]) -- 2.7.4