summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2002-11-14 21:13:42 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2002-11-14 21:13:42 +0000
commit272320eb9f66b12b29834e4c41bed52f5c679e59 (patch)
treeef40a34ef6437a13bb3018d5772a760fe343520f /configure.in
parent0c06917d110dddf29d254b09d7b6a86e7a2384e7 (diff)
downloadlibapr-272320eb9f66b12b29834e4c41bed52f5c679e59.tar.gz
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) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64031 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 2c1bc8448..eeb44ab6b 100644
--- a/configure.in
+++ b/configure.in
@@ -1272,7 +1272,7 @@ AC_SUBST(int64_strfn)
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" ])