jorton 2002/11/14 13:13:42
Modified: . configure.in
Log:
Advertise the ability to disable DSO support, not an "--enable-dso" flag
which will break the build on many platforms unless used correctly.
(e.g. simply "./configure --enable-dso" doesn't do the right thing)
Revision Changes Path
1.500 +1 -1 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.499
retrieving revision 1.500
diff -u -r1.499 -r1.500
--- configure.in 14 Nov 2002 19:54:59 -0000 1.499
+++ configure.in 14 Nov 2002 21:13:42 -0000 1.500
@@ -1272,7 +1272,7 @@
dnl ----------------------------- Checking for DSO support
echo $ac_n "${nl}Checking for DSO...${nl}"
AC_ARG_ENABLE(dso,
- [ --enable-dso Enable dso support ],
+ [ --disable-dso Disable DSO support ],
[ tempdso=$enableval],
[
AC_CHECK_FUNCS(NSLinkModule, [ tempdso="dyld" ], [ tempdso="no" ])