summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2012-06-19 12:43:11 +0930
committerRusty Russell <rusty@rustcorp.com.au>2012-06-19 05:38:07 +0200
commit1fe797aada0f546e8d557625a78843274b7e5fc5 (patch)
tree1507b9eb266513e102eb63a0fdefa7a5bb5a1eb4 /testsuite
parent13ac664a6d264564da16078f0b5fb9b7df6e185f (diff)
downloadsamba-1fe797aada0f546e8d557625a78843274b7e5fc5.tar.gz
ntdb: put it back into the build.
This doesn't do anything with it yet, just wires it back into the build. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/headers/wscript_build5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/headers/wscript_build b/testsuite/headers/wscript_build
index f83538ef090..635c8641fc6 100644
--- a/testsuite/headers/wscript_build
+++ b/testsuite/headers/wscript_build
@@ -8,6 +8,11 @@ def build_test_headers(task):
f.write('/* generated header test */\n')
hlist = task.env.public_headers_list[:]
hlist.sort()
+ # We need to include tdb.h before ntdb.h. It's the rules!
+ if 'tdb.h' in hlist and 'ntdb.h' in hlist:
+ hlist.remove('ntdb.h')
+ hlist.append('ntdb.h')
+
for h in hlist:
f.write('#include "%s"\n' % os.path.normpath(h))
f.close()