lib/util make UTIL_TDB a library
[mat/samba.git] / lib / util / wscript_build
1 #!/usr/bin/env python
2
3 # as we move files into common between samba-util and samba-util3, move them here.
4 # Both samba-util and samba-util3 depend on this private library
5 bld.SAMBA_LIBRARY('samba-util-common',
6                   source='''talloc_stack.c smb_threads.c xfile.c data_blob.c
7                   util_file.c time.c rbtree.c rfc1738.c select.c
8                   genrand.c fsusage.c blocking.c become_daemon.c
9                   signal.c system.c params.c util.c util_id.c util_net.c
10                   util_strlist.c idtree.c debug.c fault.c base64.c''',
11                   public_deps='talloc pthread LIBCRYPTO',
12                   # until we get all the dependencies in this library in common
13                   # we need to allow this library to be built with unresolved symbols
14                   allow_undefined_symbols=True,
15                   local_include=False,
16                   public_headers='debug.h',
17                   header_path= [('*', 'util') ],
18                   private_library=True
19                   )
20
21 if bld.env._SAMBA_BUILD_ == 4:
22     bld.SAMBA_LIBRARY('samba-util',
23                       source='''dprintf.c
24                       ms_fnmatch.c parmlist.c substitute.c util_str.c
25                       ''',
26                       deps='samba-util-common',
27                       public_deps='talloc CHARSET execinfo uid_wrapper',
28                       public_headers='attr.h byteorder.h data_blob.h memory.h safe_string.h time.h talloc_stack.h xfile.h dlinklist.h util.h',
29                       header_path= [ ('dlinklist.h util.h', '.'), ('*', 'util') ],
30                       local_include=False,
31                       vnum='0.0.1',
32                       pc_files='samba-util.pc'
33                       )
34
35
36 bld.SAMBA_LIBRARY('asn1util',
37                   source='asn1.c',
38                   deps='talloc samba-util-common',
39                   private_library=True,
40                   local_include=False)
41
42
43 bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
44         source='unix_privs.c',
45         autoproto='unix_privs.h',
46         deps='replace talloc',
47         local_include=False,
48         )
49
50
51 bld.SAMBA_LIBRARY('wrap_xattr',
52         source='wrap_xattr.c',
53         public_deps='attr',
54         deps='talloc',
55         local_include=False,
56         private_library=True
57         )
58
59
60 bld.SAMBA_LIBRARY('UTIL_TDB',
61         source='util_tdb.c',
62         local_include=False,
63         public_deps='tdb talloc',
64                   private_library=True
65         )
66
67 bld.SAMBA_SUBSYSTEM('UTIL_TEVENT',
68         source='tevent_unix.c tevent_ntstatus.c tevent_werror.c',
69         local_include=False,
70         public_deps='tevent',
71         public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h',
72         header_path=[ ('*', 'util') ],
73         )
74
75
76 if bld.env._SAMBA_BUILD_ == 4:
77     bld.SAMBA_SUBSYSTEM('UTIL_LDB',
78         source='util_ldb.c',
79         local_include=False,
80         public_deps='ldb',
81         public_headers='util_ldb.h'
82         )
83
84
85 bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD',
86         source='util_runcmd.c',
87         local_include=False,
88         public_deps='tevent'
89         )
90
91 bld.SAMBA_SUBSYSTEM('UTIL_PW',
92         source='util_pw.c',
93         local_include=False,
94         public_deps='talloc'
95         )