diff options
Diffstat (limited to 'source4/build/smb_build/check_path.m4')
-rw-r--r-- | source4/build/smb_build/check_path.m4 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source4/build/smb_build/check_path.m4 b/source4/build/smb_build/check_path.m4 index bfd15d3d8c..5ceda46d87 100644 --- a/source4/build/smb_build/check_path.m4 +++ b/source4/build/smb_build/check_path.m4 @@ -107,6 +107,24 @@ AC_ARG_WITH(logfilebase, ;; esac]) +################################################# +# set configuration directory location +eparserdir="" + +AC_ARG_WITH(eparserdir, +[ --with-eparserdir=DIR Where to put output for the Ethereal/PIDL plugin], +[ case "$withval" in + yes|no) + # + # Just in case anybody does it + # + AC_MSG_ERROR([--with-eparserdir called without argument]) + ;; + * ) + eparserdir="$withval" + ;; + esac]) + AC_SUBST(configdir) AC_SUBST(lockdir) AC_SUBST(piddir) @@ -114,6 +132,7 @@ AC_SUBST(logfilebase) AC_SUBST(privatedir) AC_SUBST(bindir) AC_SUBST(sbindir) +AC_SUBST(eparserdir) debug=no AC_ARG_ENABLE(debug, |