[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: BUG: Error in the INSTALL doc

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2002-08-09 22:33:58 CEST

Daniele Nicolodi <daniele@grinta.net> writes:
> Better patch, same log:

Sorry, what log? The subject line refers to an error in the INSTALL
doc, but the patch below is to Makefile.in and configure.in.

Threads do drift, and it's not always clear when to change the subject
line, I understand... just trying to straighten things out here. I
can tell this adds the `--enable-all-static' flag to configuration,
but it would help to have your log message anyway. (Always post it
with the patch, so everything's together in one email...)

Thanks,
-Karl

> Index: ./Makefile.in
> ===================================================================
> --- ./Makefile.in
> +++ ./Makefile.in 2002-08-09 02:26:20.000000000 +0200
> @@ -44,7 +44,7 @@
> SHELL = @SHELL@
> LIBTOOL = $(SHELL) $(abs_builddir)/libtool
> LTFLAGS = --silent
> -LT_LDFLAGS =
> +LT_LDFLAGS = @LT_LDFLAGS@
>
> INCLUDES = @SVN_EXTRA_INCLUDES@ @SVN_NEON_INCLUDES@ \
> @SVN_DB_INCLUDES@ @SVN_APR_INCLUDES@
> @SVN_APRUTIL_INCLUDES@
> @@ -70,8 +70,8 @@
> # special SWIG compilation
> COMPILE_SWIG_PY = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CPPFLAGS) -DSWIGPYTHON $(CFLAGS) $(SWIG_PY_INCLUDES) $(INCLUDES) -o $@
> -c $<
>
> -LINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(LDFLAGS) -rpath $(libdir)
> -LINK_APACHE_MOD = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(LDFLAGS) -rpath $(APACHE_LIBEXECDIR)
> +LINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) $(LT_LDFLAGS) $(LDFLAGS) -rpath $(libdir)
> +LINK_APACHE_MOD = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) $(LDFLAGS) -rpath $(APACHE_LIBEXECDIR)
>
> INSTALL = @INSTALL@
> INSTALL_LIB = $(LIBTOOL) --mode=install $(INSTALL)
> Index: ./configure.in
> ===================================================================
> --- ./configure.in
> +++ ./configure.in 2002-08-09 01:34:12.000000000 +0200
> @@ -108,6 +108,17 @@
> echo "configuring libtool now"
> AC_PROG_LIBTOOL
>
> +dnl Before configuring libtool check for --enable-all-static option
> +AC_ARG_ENABLE(all-static,
> +[ --enable-all-static build completely static (standalone) binaries],
> +[
> + if test "$enableval" = "yes" ; then
> + LT_LDFLAGS="-all-static $LT_LDFLAGS"
> + fi
> +])
> +
> +AC_SUBST(LT_LDFLAGS)
> +
> NEON_WANTED_REGEX="`sed -n '/NEON_WANTED_REGEX=/s/.*=//p'
> $srcdir/build/buildcheck.sh`"
> dnl You can skip the neon version check only if you know what you are doing
> AC_ARG_ENABLE(neon-version-check,
>
>
>
> Ciao
> --
> Daniele
> --- http://www.grinta.net ---
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Aug 9 22:50:28 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.