lib/util use modules_path(), data_path() and shlib_ext() from source3
[Samba.git] / lib / util / wscript_build
blob8ce30eb689119e1d1165dff3299dfd63bfaaefc9
1 #!/usr/bin/env python
3 common_util_sources = '''talloc_stack.c smb_threads.c xfile.c data_blob.c
4 util_file.c time.c rbtree.c rfc1738.c select.c
5 genrand.c fsusage.c blocking.c become_daemon.c
6 signal.c system.c params.c util.c util_id.c util_net.c
7 util_strlist.c util_paths.c idtree.c debug.c fault.c base64.c
8 util_str.c util_str_common.c substitute.c ms_fnmatch.c'''
10 common_util_headers = 'debug.h'
11 common_util_public_deps = 'talloc pthread LIBCRYPTO CHARSET'
12 s4_util_sources = '''dprintf.c parmlist.c'''
13 s4_util_deps = 'DYNCONFIG'
14 s4_util_public_deps = 'talloc execinfo uid_wrapper'
15 s4_util_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 string_wrappers.h'
16 s4_util_header_path = [ ('dlinklist.h util.h', '.'), ('*', 'util') ]
18 if bld.env._SAMBA_BUILD_ == 3:
19 # as we move files into common between samba-util and samba-util3, move them here.
20 # Both samba-util and samba-util3 depend on this private library
21 bld.SAMBA_LIBRARY('samba-util-common',
22 source=common_util_sources,
23 public_deps=common_util_public_deps,
24 # until we get all the dependencies in this library in common
25 # we need to allow this library to be built with unresolved symbols
26 allow_undefined_symbols=True,
27 local_include=False,
28 public_headers=common_util_headers,
29 header_path= [('*', 'util') ],
30 private_library=True
33 else:
34 bld.SAMBA_LIBRARY('samba-util',
35 source=s4_util_sources + " " + common_util_sources,
36 deps=s4_util_deps,
37 public_deps=s4_util_public_deps + ' ' + common_util_public_deps,
38 public_headers=s4_util_public_headers + ' ' + common_util_headers,
39 header_path= s4_util_header_path,
40 local_include=False,
41 vnum='0.0.1',
42 pc_files='samba-util.pc'
45 # dummy subsystem for avoid wider deps changes.
46 bld.SAMBA_SUBSYSTEM('samba-util-common',
47 source=[],
48 deps='samba-util',
49 local_include=False,)
51 bld.SAMBA_LIBRARY('asn1util',
52 source='asn1.c',
53 deps='talloc samba-util-common',
54 private_library=True,
55 local_include=False)
58 bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
59 source='unix_privs.c',
60 autoproto='unix_privs.h',
61 deps='replace talloc',
62 local_include=False,
66 bld.SAMBA_LIBRARY('wrap_xattr',
67 source='wrap_xattr.c',
68 public_deps='attr',
69 deps='talloc',
70 local_include=False,
71 private_library=True
75 bld.SAMBA_LIBRARY('UTIL_TDB',
76 source='util_tdb.c',
77 local_include=False,
78 public_deps='tdb talloc',
79 private_library=True
82 bld.SAMBA_SUBSYSTEM('UTIL_TEVENT',
83 source='tevent_unix.c tevent_ntstatus.c tevent_werror.c',
84 local_include=False,
85 public_deps='tevent',
86 public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h',
87 header_path=[ ('*', 'util') ],
91 if bld.env._SAMBA_BUILD_ == 4:
92 bld.SAMBA_SUBSYSTEM('util_ldb',
93 source='util_ldb.c',
94 local_include=False,
95 public_deps='ldb',
96 public_headers='util_ldb.h'
100 bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD',
101 source='util_runcmd.c',
102 local_include=False,
103 public_deps='tevent'
106 bld.SAMBA_SUBSYSTEM('UTIL_PW',
107 source='util_pw.c',
108 local_include=False,
109 public_deps='talloc'
113 bld.SAMBA_LIBRARY('tdb-wrap',
114 source='tdb_wrap.c',
115 deps='tdb talloc samba-util',
116 private_library=True,
117 local_include=False