diff options
-rw-r--r-- | source3/configure.in | 17 | ||||
-rw-r--r-- | source3/include/includes.h | 2 |
2 files changed, 1 insertions, 18 deletions
diff --git a/source3/configure.in b/source3/configure.in index 280cddbde6..0b9d4f5d6d 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2465,23 +2465,6 @@ AC_ARG_WITH(ldapsam, ) ################################################# -# check for a TDB password database -AC_MSG_CHECKING(whether to use TDB SAM database) -AC_ARG_WITH(tdbsam, -[ --with-tdbsam Include experimental TDB SAM support (default=no)], -[ case "$withval" in - yes) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_TDB_SAM,1,[Whether to include experimental TDB SAM support]) - ;; - *) - AC_MSG_RESULT(no) - ;; - esac ], - AC_MSG_RESULT(no) -) - -################################################# # check for a NISPLUS password database AC_MSG_CHECKING(whether to use NISPLUS SAM database) AC_ARG_WITH(nisplussam, diff --git a/source3/include/includes.h b/source3/include/includes.h index 3ff80d07ab..7bcd31f623 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -895,7 +895,7 @@ struct printjob; #define MAP_FILE 0 #endif -#if (!defined(WITH_NISPLUS) && !defined(WITH_LDAP) && !defined(WITH_TDB_SAM)) +#if (!defined(WITH_NISPLUS) && !defined(WITH_LDAP)) #define USE_SMBPASS_DB 1 #endif |