diff options
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 124 |
1 files changed, 0 insertions, 124 deletions
diff --git a/source3/configure.in b/source3/configure.in index 7ba72bf26c..a1a4d44af0 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4332,130 +4332,6 @@ AC_ARG_WITH(automount, ) ################################################# -# check for mount- and umount.cifs support -CIFSMOUNT_PROGS="" -INSTALL_CIFSMOUNT="" -UNINSTALL_CIFSMOUNT="" -AC_MSG_CHECKING(whether to build mount.cifs) -AC_ARG_WITH(cifsmount, -[AS_HELP_STRING([--with-cifsmount], [Include mount.cifs (Linux only) support (default=yes)])], -[ case "$withval" in - no) - AC_MSG_RESULT(no) - ;; - *) - case "$host_os" in - *linux*) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_CIFSMOUNT,1,[Whether to build mount.cifs]) - CIFSMOUNT_PROGS="bin/mount.cifs" - INSTALL_CIFSMOUNT="installcifsmount" - UNINSTALL_CIFSMOUNT="uninstallcifsmount" - ;; - *) - AC_MSG_ERROR(not on a linux system!) - ;; - esac - ;; - esac ], -[ case "$host_os" in - *linux*) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_CIFSMOUNT,1,[Whether to build mount.cifs]) - CIFSMOUNT_PROGS="bin/mount.cifs" - INSTALL_CIFSMOUNT="installcifsmount" - UNINSTALL_CIFSMOUNT="uninstallcifsmount" - ;; - *) - AC_MSG_RESULT(no) - ;; - esac ] -) - -CIFSUMOUNT_PROGS="" -INSTALL_CIFSUMOUNT="" -UNINSTALL_CIFSUMOUNT="" -AC_MSG_CHECKING(whether to build umount.cifs) -AC_ARG_WITH(cifsumount, -[AS_HELP_STRING([--with-cifsumount], [Include umount.cifs (Linux only) support (default=no)])], -[ case "$withval" in - yes) - case "$host_os" in - *linux*) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_CIFSUMOUNT,1,[Whether to build umount.cifs]) - CIFSUMOUNT_PROGS="bin/umount.cifs" - INSTALL_CIFSUMOUNT="installcifsumount" - UNINSTALL_CIFSUMOUNT="uninstallcifsumount" - ;; - *) - AC_MSG_ERROR(not on a linux system!) - ;; - esac - ;; - *) - AC_MSG_RESULT(no) - ;; - esac ], - AC_MSG_RESULT(no) -) - -################################################# -# check for cifs.upcall support -AC_CHECK_HEADERS([keyutils.h], [HAVE_KEYUTILS_H=1], [HAVE_KEYUTILS_H=0]) -CIFSUPCALL_PROGS="" -INSTALL_CIFSUPCALL="" -UNINSTALL_CIFSUPCALL="" -AC_MSG_CHECKING(whether to build cifs.upcall) -AC_ARG_WITH(cifsupcall, -[AS_HELP_STRING([--with-cifsupcall], [Include cifs.upcall (Linux only) support (default=yes)])], -[ case "$withval" in - no) - AC_MSG_RESULT(no) - ;; - *) - case "$host_os" in - *linux*) - if test x"$use_ads" != x"yes"; then - AC_MSG_ERROR(ADS support should be enabled for building cifs.upcall) - elif test x"$HAVE_KEYUTILS_H" != "x1"; then - AC_MSG_ERROR(keyutils package is required for cifs.upcall) - else - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_CIFSUPCALL,1,[whether to build cifs.upcall]) - CIFSUPCALL_PROGS="bin/cifs.upcall" - INSTALL_CIFSUPCALL="installcifsupcall" - UNINSTALL_CIFSUPCALL="uninstallcifsupcall" - fi - ;; - *) - AC_MSG_ERROR(not on a linux system!) - ;; - esac - ;; - esac ], -[ case "$host_os" in - *linux*) - if test x"$use_ads" != x"yes"; then - AC_MSG_WARN(ADS support should be enabled for building cifs.upcall) - elif test x"$HAVE_KEYUTILS_H" != "x1"; then - AC_MSG_WARN(keyutils package is required for cifs.upcall) - else - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_CIFSUPCALL,1,[whether to build cifs.upcall]) - CIFSUPCALL_PROGS="bin/cifs.upcall" - INSTALL_CIFSUPCALL="installcifsupcall" - UNINSTALL_CIFSUPCALL="uninstallcifsupcall" - fi - ;; - *) - AC_MSG_RESULT(no) - ;; - esac ] -) - - -################################################# # Check for a PAM clear-text auth, accounts, password # and session support. Most PAM implementations keep their # headers in /usr/include/security. Darwin keeps its in |