diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-09-24 16:23:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:52 -0500 |
commit | 3d4ea18d4dd9031adc16348c16595d6c216b2d84 (patch) | |
tree | b43aba2aff1820c4ed365132cc2feca544ed402a /source4/dsdb/SConscript | |
parent | 63b43dd12fb579aaaccedd07aaa630cb1cd7aa88 (diff) | |
download | samba-3d4ea18d4dd9031adc16348c16595d6c216b2d84.tar.gz samba-3d4ea18d4dd9031adc16348c16595d6c216b2d84.tar.bz2 samba-3d4ea18d4dd9031adc16348c16595d6c216b2d84.zip |
r10478: More work on proto headers; we now generate a couple of smaller ones
that are then included by include/proto.h
(This used to be commit 703ffbaaaca11f3d8781cfe9e7542fcaa626d991)
Diffstat (limited to 'source4/dsdb/SConscript')
-rw-r--r-- | source4/dsdb/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/dsdb/SConscript b/source4/dsdb/SConscript index 1a64382053..34c1f8f7e2 100644 --- a/source4/dsdb/SConscript +++ b/source4/dsdb/SConscript @@ -2,4 +2,6 @@ Import('hostenv') hostenv.StaticLibrary('ldb_objectguid',['samdb/ldb_modules/objectguid.c']) hostenv.StaticLibrary('ldb_samldb',['samdb/ldb_modules/samldb.c']) hostenv.StaticLibrary('ldb_samba3sam',['samdb/ldb_modules/samba3sam.c']) -hostenv.StaticLibrary('samdb',['samdb/samdb.c','samdb/samdb_privilege.c','common/flag_mapping.c']) +samdb_files = ['samdb/samdb.c','samdb/samdb_privilege.c','common/flag_mapping.c'] +hostenv.StaticLibrary('samdb',samdb_files) +hostenv.proto_headers += hostenv.CProtoHeader(samdb_files) |