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