Date: 12 Nov 2002 13:43:59 -0500 From: Joe Marcus Clarke <marcus@marcuscom.com> To: Glenn Johnson <glennpj@charter.net> Cc: Adam Weinberger <adamw@FreeBSD.ORG>, Sean McNeil <sean@mcneil.com>, gnome@FreeBSD.ORG Subject: Re: soup build failure Message-ID: <1037126639.323.51.camel@gyros> In-Reply-To: <20021112182043.GA56198@gforce.johnson.home> References: <1037110507.76916.1.camel@blue.mcneil.com> <20021112162953.GF35297@vectors.cx> <20021112182043.GA56198@gforce.johnson.home>
next in thread | previous in thread | raw e-mail | index | archive | help
--=-YWQ9QRbrAy0gNi34D26X Content-Type: text/plain Content-Transfer-Encoding: 7bit On Tue, 2002-11-12 at 13:20, Glenn Johnson wrote: > On Tue, Nov 12, 2002 at 08:29:53AM -0800, Adam Weinberger wrote: > > > I'd like to see your config.status and config.log, unless somebody > > already knows what's up. > > I am attaching mine. The problem is in your apxs script. It's returning ";;" after the INCLUDEDIR. This doesn't seem to be isolated to just you, but it does look like it affects all Apache 2 users. Can you replace soup's patch-configure with the attached files, and see if it builds? Joe -- PGP Key : http://www.marcuscom.com/pgp.asc --=-YWQ9QRbrAy0gNi34D26X Content-Disposition: attachment; filename=patch-configure Content-Type: text/plain; name=patch-configure; charset=ISO8859-1 Content-Transfer-Encoding: 7bit --- configure.orig Fri Jun 7 11:58:41 2002 +++ configure Tue Nov 12 13:42:27 2002 @@ -6554,6 +6554,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" +$ac_aux_dir/ltconfig $LIBTOOL_DEPS # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' @@ -7460,9 +7461,9 @@ rm -f conf.glibtest - GLIB_CFLAGS=`glib-config --cflags glib` - GLIB_LIBS=`glib-config --libs glib` - GMODULE_LIBS=`glib-config --libs gmodule` + GLIB_CFLAGS=`$GLIB_CONFIG --cflags glib` + GLIB_LIBS=`$GLIB_CONFIG --libs glib` + GMODULE_LIBS=`$GLIB_CONFIG --libs gmodule` FAVOUR_LIBXML=1 SOUP_PKGCONFIG_REQUIRES="glib" @@ -9083,7 +9084,7 @@ fi if test x$APXS != xno; then - APACHE_CFLAGS="-I`apxs -q INCLUDEDIR CFLAGS`" + APACHE_CFLAGS="-I`apxs -q INCLUDEDIR CFLAGS | sed -e 's|;;| |g'`" APACHE_LIBS=`apxs -q LDFLAGS_SHLIB LIBS_SHLIB` save_CPPFLAGS=$CPPFLAGS --=-YWQ9QRbrAy0gNi34D26X-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1037126639.323.51.camel>