fielding 01/07/09 16:30:19
Modified: . configure.in
Log:
For some reason --with-libtool was changed to AC_ARG_ENABLE without
changing the variables or the documentation, which aside from being
bogus wasn't a desirable change anyway (libtool is a package).
Also, clean up some of the help spacing and properly quote the macro
arguments to some new options.
Revision Changes Path
1.334 +7 -7 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.333
retrieving revision 1.334
diff -u -r1.333 -r1.334
--- configure.in 2001/07/09 23:14:33 1.333
+++ configure.in 2001/07/09 23:30:17 1.334
@@ -107,7 +107,7 @@
;;
esac
-AC_ARG_ENABLE(libtool, [--with-libtool use libtool to link the library],
+AC_ARG_WITH(libtool, [ --without-libtool avoid using libtool to link
the library],
[ use_libtool=$withval ], [ use_libtool="yes" ] )
if test "x$use_libtool" = "xyes"; then
@@ -134,7 +134,7 @@
'
echo $ac_n "${nl}Check for compiler flags...${nl}"
-AC_ARG_ENABLE(debug,[ --enable-debug Turn on debugging and
compile time warnings],
+AC_ARG_ENABLE(debug,[ --enable-debug Turn on debugging and compile
time warnings],
[APR_ADDTO(CFLAGS,-g)
if test "$GCC" = "yes"; then
APR_ADDTO(CFLAGS,-Wall)
@@ -149,15 +149,15 @@
fi
])dnl
-AC_ARG_ENABLE(assert-memory,[ --enable-assert-memory Turn on asserts in the
APR memory code],
+AC_ARG_ENABLE(assert-memory,[ --enable-assert-memory Turn on asserts in
the APR memory code],[
APR_ADDTO(NOTEST_CPPFLAGS,-DAPR_ASSERT_MEMORY)
-)dnl
+])dnl
-AC_ARG_ENABLE(profile,[ --enable-profile Turn on profiling for the build
(GCC)],
+AC_ARG_ENABLE(profile,[ --enable-profile Turn on profiling for the
build (GCC)],[
if test "$GCC" = "yes"; then
APR_ADDTO(CFLAGS, -pg)
fi
-)dnl
+])dnl
dnl # this is the place to put specific options for platform/compiler
dnl # combinations
@@ -453,7 +453,7 @@
dnl threaded poll() and we don't want to use sendfile on early FreeBSD
dnl systems if we are also using threads.
-AC_ARG_WITH(sendfile, [ --with-sendfile Force sendfile to be on or off],
+AC_ARG_WITH(sendfile, [ --with-sendfile Override decision to use
sendfile],
[ if test "$withval" = "yes"; then
sendfile="1"
else