From 48a42708aead320bfbcee16ae76d095c014802de Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 20 Feb 2013 14:59:42 +1030 Subject: [PATCH] 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 Reviewed-by: Andrew Bartlett --- source3/Makefile.in | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/Makefile.in b/source3/Makefile.in index e27875f6acf..90f12b741d6 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)\" \ -- 2.11.4.GIT