summaryrefslogtreecommitdiff
path: root/source4/web/config.m4
diff options
context:
space:
mode:
Diffstat (limited to 'source4/web/config.m4')
-rw-r--r--source4/web/config.m417
1 files changed, 17 insertions, 0 deletions
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)