diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2013-02-20 14:59:42 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-02-20 05:31:19 +0100 |
commit | 48a42708aead320bfbcee16ae76d095c014802de (patch) | |
tree | 3125703d937b85da069b84c7fd022ac3806f446b /source3 | |
parent | 63a6381a26171f069cdc7465ca753f0b3c5d26f2 (diff) | |
download | samba-48a42708aead320bfbcee16ae76d095c014802de.tar.gz samba-48a42708aead320bfbcee16ae76d095c014802de.tar.xz samba-48a42708aead320bfbcee16ae76d095c014802de.zip |
source3: explicitly disable NTDB support.
The next patch make dbwrap_local_open() call the ntdb backend for ntdb
files, but we don't want to add ntdb support to the old autoconf
build. It's cleaner to use the existing DISABLE_NTDB flag rather than
test for _SAMBA_BUILD_ in dbwrap_local_open.c.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index e27875f6ac..90f12b741d 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -179,6 +179,7 @@ FLAGS = -I. \ -I$(srcdir)/lib \ -I.. \ -I./../lib/ldb/include \ + -DDISABLE_NTDB \ -D_SAMBA_BUILD_=3 PATH_FLAGS = -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" \ |