lib: Remove unused parmlist code
[obnox/samba/samba-obnox.git] / lib / util / wscript_build
1 #!/usr/bin/env python
2
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.
5
6 bld.SAMBA_LIBRARY('time-basic',
7                   source='time_basic.c',
8                   deps='replace',
9                   private_library=True,
10                   local_include=False)
11
12 bld.SAMBA_SUBSYSTEM('tini',
13                     source='tini.c',
14                     deps='',
15                     local_include=False)
16
17 bld.SAMBA_SUBSYSTEM('tiniparser',
18                     source='tiniparser.c',
19                     deps='tini',
20                     local_include=False)
21
22 bld.SAMBA_SUBSYSTEM('strv',
23                     source='strv.c',
24                     deps='talloc',
25                     local_include=False)
26
27 bld.SAMBA_SUBSYSTEM('close-low-fd',
28                     source='close_low_fd.c',
29                     deps='replace',
30                     local_include=False)
31
32 samba_debug_add_deps = ''
33 samba_debug_add_inc  = ''
34
35 if bld.CONFIG_SET('HAVE_GPFS'):
36     bld.SAMBA_SUBSYSTEM('gpfswrap',
37                         source='gpfswrap.c',
38                         deps='replace',
39                         local_include=False,
40                         includes=bld.CONFIG_GET('CPPPATH_GPFS'))
41     samba_debug_add_deps += ' gpfswrap'
42     samba_debug_add_inc  += bld.CONFIG_GET('CPPPATH_GPFS')
43
44 bld.SAMBA_LIBRARY('samba-debug',
45                   source='debug.c',
46                   deps='replace time-basic close-low-fd talloc socket-blocking' + samba_debug_add_deps,
47                   public_deps='systemd systemd-journal lttng-ust',
48                   local_include=False,
49                   includes=samba_debug_add_inc,
50                   private_library=True)
51
52 bld.SAMBA_LIBRARY('socket-blocking',
53                   source='blocking.c',
54                   local_include=False,
55                   private_library=True)
56
57 bld.SAMBA_LIBRARY('talloc_report',
58                   source='talloc_report.c',
59                   local_include=False,
60                   public_deps='talloc',
61                   private_library=True
62                   )
63
64 bld.SAMBA_SUBSYSTEM('samba-util-core',
65                     source='''xfile.c data_blob.c util_file.c time.c
66                               signal.c util.c idtree.c fault.c
67                               substitute.c''',
68                     deps='''time-basic samba-debug socket-blocking talloc
69                             tevent execinfo pthread''',
70                     local_include=False)
71
72 if not bld.env.SAMBA_UTIL_CORE_ONLY:
73
74     bld.env.public_headers_skip.append('charset_compat.h')
75
76     bld.SAMBA_LIBRARY('genrand',
77                       source='genrand.c',
78                       deps='time-basic socket-blocking LIBCRYPTO',
79                       local_include=False,
80                       private_library=True)
81
82     bld.SAMBA_LIBRARY('samba-util',
83                   source='''talloc_stack.c smb_threads.c
84                     rbtree.c rfc1738.c become_daemon.c system.c select.c getpass.c
85                     genrand_util.c fsusage.c
86                     params.c util_id.c util_net.c
87                     util_strlist.c util_paths.c idtree_random.c base64.c
88                     util_str.c util_str_common.c ms_fnmatch.c
89                     server_id.c dprintf.c bitmap.c pidfile.c
90                     tevent_debug.c util_process.c memcache.c''',
91                   deps='samba-util-core DYNCONFIG close-low-fd tini tiniparser genrand',
92
93                   public_deps='talloc tevent execinfo pthread LIBCRYPTO charset util_setid systemd systemd-daemon',
94                   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',
95                   header_path= [ ('dlinklist.h samba_util.h', '.'), ('*', 'util') ],
96                   local_include=False,
97                   vnum='0.0.1',
98                   pc_files='samba-util.pc'
99                   )
100
101     bld.SAMBA_LIBRARY('samba-modules',
102                       source='modules.c',
103                       deps='errors samba-util',
104                       local_include=False,
105                       private_library=True)
106
107     bld.SAMBA_LIBRARY('asn1util',
108                       source='asn1.c',
109                       deps='talloc samba-util',
110                       private_library=True,
111                       local_include=False)
112
113
114     bld.SAMBA_SUBSYSTEM('UNIX_PRIVS',
115                         source='unix_privs.c',
116                         autoproto='unix_privs.h',
117                         deps='replace talloc',
118                         local_include=False,
119                         )
120
121
122     bld.SAMBA_LIBRARY('util_tdb',
123                       source='util_tdb.c',
124                       local_include=False,
125                       public_deps='tdb talloc',
126                       private_library=True
127                       )
128
129     bld.SAMBA_LIBRARY('tevent-util',
130                       source='tevent_unix.c tevent_ntstatus.c tevent_werror.c',
131                       local_include=False,
132                       public_deps='tevent errors',
133                       public_headers='tevent_ntstatus.h tevent_unix.h tevent_werror.h',
134                       header_path=[ ('*', 'util') ],
135                       pc_files=[],
136                       vnum='0.0.1'
137                       )
138
139     bld.SAMBA_LIBRARY('util_setid',
140                       source='setid.c',
141                       local_include=False,
142                       private_library=True
143                       )
144
145     bld.SAMBA_SUBSYSTEM('util_ldb',
146                         source='util_ldb.c',
147                         local_include=False,
148                         public_deps='ldb',
149                         public_headers='util_ldb.h'
150                         )
151
152
153     bld.SAMBA_SUBSYSTEM('UTIL_RUNCMD',
154                         source='util_runcmd.c',
155                         local_include=False,
156                         public_deps='tevent'
157                         )
158
159     bld.SAMBA_SUBSYSTEM('UTIL_PW',
160                         source='util_pw.c',
161                         local_include=False,
162                         public_deps='talloc'
163                         )
164
165     bld.SAMBA_LIBRARY('server_id_db',
166                       source='server_id_db.c',
167                       deps='talloc tdb strv util_tdb tdb-wrap samba-util',
168                       local_include=False,
169                       private_library=True)
170
171     bld.SAMBA_LIBRARY('iov_buf',
172                       source='iov_buf.c',
173                       local_include=False,
174                       private_library=True)