From 47702c85524afceba520cc3c2d2bc0d9a4e02e40 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 2 Dec 2003 11:10:56 +0000 Subject: Initial step at cleaning and splitting up configure.in. (This used to be commit 369a9c1ac1ff94a1d3f51eac20a39577f9cf2155) --- source4/web/config.m4 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 source4/web/config.m4 (limited to 'source4/web') diff --git a/source4/web/config.m4 b/source4/web/config.m4 new file mode 100644 index 0000000000..f8bb33759d --- /dev/null +++ b/source4/web/config.m4 @@ -0,0 +1,17 @@ +################################################# +# set SWAT directory location +AC_ARG_WITH(swatdir, +[ --with-swatdir=DIR Where to put SWAT files ($ac_default_prefix/swat)], +[ case "$withval" in + yes|no) + # + # Just in case anybody does it + # + AC_MSG_WARN([--with-swatdir called without argument - will use default]) + ;; + * ) + swatdir="$withval" + ;; + esac]) + +AC_SUBST(swatdir) -- cgit