diff options
author | Tim Potter <tpot@samba.org> | 2005-09-23 07:36:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:46 -0500 |
commit | 7906d768cc05638515ff8b5e34827552425bd442 (patch) | |
tree | 29b1505748294844aa86361aa00dcd0ed631ec31 /source4/lib | |
parent | 96f308481f4656d406cf70c07c994f5dbf9c9091 (diff) | |
download | samba-7906d768cc05638515ff8b5e34827552425bd442.tar.gz samba-7906d768cc05638515ff8b5e34827552425bd442.tar.bz2 samba-7906d768cc05638515ff8b5e34827552425bd442.zip |
r10444: Add LIBBASIC files to proto.h
(This used to be commit 1c3748421f53f4a4e61865e1de95c53dc75d5cee)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/SConscript | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/lib/SConscript b/source4/lib/SConscript index 387f557932..328d6233e4 100644 --- a/source4/lib/SConscript +++ b/source4/lib/SConscript @@ -2,7 +2,7 @@ Import('hostenv') # tastes like -*- python -*- SConscript(dirs=['talloc','charset']) -Import('talloc dynconfig charset') +Import('talloc', 'dynconfig', 'charset', 'proto_files') basic_files = ['version.c', 'xfile.c', 'debug.c', 'fault.c', 'signal.c', 'system.c', 'time.c', 'genrand.c', 'dprintf.c', @@ -10,6 +10,9 @@ basic_files = ['version.c', 'xfile.c', 'debug.c', 'fault.c', 'data_blob.c', 'util.c', 'util_sock.c', 'substitute.c', 'fsusage.c', 'ms_fnmatch.c', 'select.c', 'mutex.c', 'idtree.c', 'db_wrap.c'] + +proto_files += [File(x) for x in basic_files] + basic = hostenv.StaticLibrary('basic', [dynconfig,charset,talloc,basic_files]) Export('basic') |