11bb40a45adae6c4eb4feecf971f1ef69e8f4782
[amitay/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_SUBSYSTEM('UTIL_TDB',
61         source='util_tdb.c',
62         local_include=False,
63         public_deps='tdb talloc'
64         )
65
66 bld.SAMBA_SUBSYSTEM('UTIL_TEVENT',
67         source='tevent_unix.c tevent_ntstatus.c tevent_werror.c',
68         local_include=False,
69         public_deps='tevent',
70         public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h',
71         header_path=[ ('*', 'util') ],
72         )
73
74
75 if bld.env._SAMBA_BUILD_ == 4:
76     bld.SAMBA_SUBSYSTEM('UTIL_LDB',
77         source='util_ldb.c',
78         local_include=False,
79         public_deps='ldb',
80         public_headers='util_ldb.h'
81         )
82
83
84 bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD',
85         source='util_runcmd.c',
86         local_include=False,
87         public_deps='tevent'
88         )
89
90 bld.SAMBA_SUBSYSTEM('UTIL_PW',
91         source='util_pw.c',
92         local_include=False,
93         public_deps='talloc'
94         )