summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJohn Blair <jdblair@samba.org>1998-08-13 19:00:04 +0000
committerJohn Blair <jdblair@samba.org>1998-08-13 19:00:04 +0000
commit2ad339b6ff9dc1f55a8f751de56a39bb10846cdf (patch)
treec8300cdac17df99416cbf22b473a9cf11604cd9b /source3
parentc629b4c53f2523585e6b05de9589ae73ebe99e78 (diff)
downloadsamba-2ad339b6ff9dc1f55a8f751de56a39bb10846cdf.tar.gz
samba-2ad339b6ff9dc1f55a8f751de56a39bb10846cdf.tar.bz2
samba-2ad339b6ff9dc1f55a8f751de56a39bb10846cdf.zip
Added the '--with-netatalk' option to turn Netatalk support on at
compile-time. (This used to be commit 2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6)
Diffstat (limited to 'source3')
-rw-r--r--source3/configure.in18
1 files changed, 18 insertions, 0 deletions
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