summaryrefslogtreecommitdiffstats
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
commit2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6 (patch)
tree9d871cb682e647a5e5e52d5afb62c9f163a03ef6
parent1313451f2161f69d33e7f1d41a1bf5615f61014c (diff)
downloadsamba-2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6.tar.gz
samba-2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6.tar.xz
samba-2ba4b66a74cfe736cf2a64ba99b1ab3d83878fc6.zip
Added the '--with-netatalk' option to turn Netatalk support on at
compile-time.
-rw-r--r--source/configure.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/configure.in b/source/configure.in
index cbb9df0ce3a..14698e401f6 100644
--- a/source/configure.in
+++ b/source/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