summaryrefslogtreecommitdiff
path: root/m4/ax_lib_expat.m4
diff options
context:
space:
mode:
authormsheby <msheby@cinecert.com>2008-04-30 01:09:32 +0000
committermsheby <>2008-04-30 01:09:32 +0000
commitf9e0c5ce1dbb77e1a4a2f2f3bc39176326dd3786 (patch)
tree44e0a4837e648400da34b9bd222a6d81de0aefa3 /m4/ax_lib_expat.m4
parent903233deb3cfe02661768d84b513d51596441007 (diff)
Make neither expat nor xerces-c default.
(That is, use --with-expat or --with-xerces)
Diffstat (limited to 'm4/ax_lib_expat.m4')
-rw-r--r--m4/ax_lib_expat.m419
1 files changed, 11 insertions, 8 deletions
diff --git a/m4/ax_lib_expat.m4 b/m4/ax_lib_expat.m4
index c93680b..90bd1b4 100644
--- a/m4/ax_lib_expat.m4
+++ b/m4/ax_lib_expat.m4
@@ -70,14 +70,17 @@ AC_DEFUN([AX_LIB_EXPAT],
fi
],
[
- dnl Default behavior is implicit yes
- if test -f /usr/local/include/expat.h ; then
- expat_prefix=/usr/local
- elif test -f /usr/include/expat.h ; then
- expat_prefix=/usr
- else
- expat_prefix=""
- fi
+# dnl Default behavior is implicit yes
+# if test -f /usr/local/include/expat.h ; then
+# expat_prefix=/usr/local
+# elif test -f /usr/include/expat.h ; then
+# expat_prefix=/usr
+# else
+# expat_prefix=""
+# fi
+ dnl Default behavior is implicit no
+ expat_prefix=""
+ expat_requested="no"
]
)