lib: Make time-basic a library
[Samba.git] / lib / util / wscript_build
bloba1287b7e0b7b720bbc81b97ffe67d4c58d56acca
1 #!/usr/bin/env python
3 # Please add any new SAMBA_SUBSYSTEM/SAMBA_LIBRARY to the bottom of the file
4 # unless they are also required to build standalone ctdb.
6 bld.SAMBA_LIBRARY('time-basic',
7 source='time_basic.c',
8 deps='replace',
9 private_library=True,
10 local_include=False)
12 bld.SAMBA_SUBSYSTEM('tini',
13 source='tini.c',
14 deps='',
15 local_include=False)
17 bld.SAMBA_SUBSYSTEM('tiniparser',
18 source='tiniparser.c',
19 deps='tini',
20 local_include=False)
22 bld.SAMBA_SUBSYSTEM('strv',
23 source='strv.c',
24 deps='talloc',
25 local_include=False)
27 bld.SAMBA_SUBSYSTEM('close-low-fd',
28 source='close_low_fd.c',
29 deps='replace',
30 local_include=False)
32 samba_debug_add_deps = ''
34 if bld.CONFIG_SET('HAVE_GPFS'):
35 bld.SAMBA_SUBSYSTEM('gpfswrap',
36 source='gpfswrap.c',
37 deps='replace',
38 local_include=False,
39 includes=bld.CONFIG_GET('CPPPATH_GPFS'))
40 samba_debug_add_deps += ' gpfswrap'
42 bld.SAMBA_LIBRARY('samba-debug',
43 source='debug.c',
44 deps='replace time-basic close-low-fd talloc socket-blocking' + samba_debug_add_deps,
45 public_deps='systemd systemd-journal lttng-ust',
46 local_include=False,
47 private_library=True)
49 bld.SAMBA_LIBRARY('socket-blocking',
50 source='blocking.c',
51 local_include=False,
52 private_library=True)
54 bld.SAMBA_SUBSYSTEM('samba-util-core',
55 source='''xfile.c data_blob.c util_file.c time.c
56 signal.c util.c idtree.c fault.c
57 substitute.c''',
58 deps='''time-basic samba-debug socket-blocking talloc
59 tevent execinfo pthread''',
60 local_include=False)
62 if not bld.env.SAMBA_UTIL_CORE_ONLY:
64 bld.env.public_headers_skip.append('charset_compat.h')
66 bld.SAMBA_LIBRARY('samba-util',
67 source='''talloc_stack.c smb_threads.c
68 rbtree.c rfc1738.c become_daemon.c system.c select.c getpass.c
69 genrand.c genrand_util.c fsusage.c
70 params.c util_id.c util_net.c
71 util_strlist.c util_paths.c idtree_random.c base64.c
72 util_str.c util_str_common.c ms_fnmatch.c
73 server_id.c dprintf.c parmlist.c bitmap.c pidfile.c
74 tevent_debug.c util_process.c memcache.c''',
75 deps='samba-util-core DYNCONFIG close-low-fd tini tiniparser',
77 public_deps='talloc tevent execinfo pthread LIBCRYPTO charset util_setid systemd systemd-daemon',
78 public_headers='debug.h attr.h byteorder.h data_blob.h memory.h safe_string.h time.h talloc_stack.h xfile.h dlinklist.h samba_util.h string_wrappers.h idtree.h idtree_random.h blocking.h signal.h substitute.h fault.h genrand.h',
79 header_path= [ ('dlinklist.h samba_util.h', '.'), ('*', 'util') ],
80 local_include=False,
81 vnum='0.0.1',
82 pc_files='samba-util.pc'
85 bld.SAMBA_LIBRARY('samba-modules',
86 source='modules.c',
87 deps='errors samba-util',
88 local_include=False,
89 private_library=True)
91 bld.SAMBA_LIBRARY('asn1util',
92 source='asn1.c',
93 deps='talloc samba-util',
94 private_library=True,
95 local_include=False)
98 bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
99 source='unix_privs.c',
100 autoproto='unix_privs.h',
101 deps='replace talloc',
102 local_include=False,
106 bld.SAMBA_LIBRARY('util_tdb',
107 source='util_tdb.c',
108 local_include=False,
109 public_deps='tdb talloc',
110 private_library=True
113 bld.SAMBA_LIBRARY('talloc_report',
114 source='talloc_report.c',
115 local_include=False,
116 public_deps='talloc',
117 private_library=True
120 bld.SAMBA_LIBRARY('tevent-util',
121 source='tevent_unix.c tevent_ntstatus.c tevent_werror.c',
122 local_include=False,
123 public_deps='tevent errors',
124 public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h',
125 header_path=[ ('*', 'util') ],
126 pc_files=[],
127 vnum='0.0.1'
130 bld.SAMBA_LIBRARY('util_setid',
131 source='setid.c',
132 local_include=False,
133 private_library=True
136 bld.SAMBA_SUBSYSTEM('util_ldb',
137 source='util_ldb.c',
138 local_include=False,
139 public_deps='ldb',
140 public_headers='util_ldb.h'
144 bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD',
145 source='util_runcmd.c',
146 local_include=False,
147 public_deps='tevent'
150 bld.SAMBA_SUBSYSTEM('UTIL_PW',
151 source='util_pw.c',
152 local_include=False,
153 public_deps='talloc'
156 bld.SAMBA_LIBRARY('server_id_db',
157 source='server_id_db.c',
158 deps='talloc tdb strv util_tdb tdb-wrap samba-util',
159 local_include=False,
160 private_library=True)
162 bld.SAMBA_LIBRARY('iov_buf',
163 source='iov_buf.c',
164 local_include=False,
165 private_library=True)