From 2ad339b6ff9dc1f55a8f751de56a39bb10846cdf Mon Sep 17 00:00:00 2001 From: John Blair Date: Thu, 13 Aug 1998 19:00:04 +0000 Subject: Added the '--with-netatalk' option to turn Netatalk support on at compile-time. (This used to be commit 2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6) --- source3/configure.in | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'source3') diff --git a/source3/configure.in b/source3/configure.in index cbb9df0ce3..14698e401f 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -458,6 +458,24 @@ AC_ARG_WITH(syslog, AC_MSG_RESULT(no) ) +################################################# +# check for experimental netatalk resource fork support +AC_MSG_CHECKING(whether to support netatalk) +AC_ARG_WITH(netatalk, +[ --with-netatalk Include experimental Netatalk support + --without-netatalk Don't include experimental Netatalk support (default)], +[ case "$withval" in + yes) + AC_MSG_RESULT(yes) + AC_DEFINE(WITH_NETATALK) + ;; + *) + AC_MSG_RESULT(no) + ;; + esac ], + AC_MSG_RESULT(no) +) + ################################################# # these tests are taken from the GNU fileutils package -- cgit