build: In some case the flags for the sun studio linker are wrong
[samba.git] / buildtools / wafsamba / samba_conftests.py
1 # a set of config tests that use the samba_autoconf functions
2 # to test for commonly needed configuration options
3
4 import os, Build, shutil, Utils, re
5 from Configure import conf
6 from samba_utils import *
7
8 @conf
9 def CHECK_ICONV(conf, define='HAVE_NATIVE_ICONV'):
10     '''check if the iconv library is installed
11        optionally pass a define'''
12     if conf.CHECK_FUNCS_IN('iconv_open', 'iconv', checklibc=True, headers='iconv.h'):
13         conf.DEFINE(define, 1)
14         return True
15     return False
16
17
18 @conf
19 def CHECK_LARGEFILE(conf, define='HAVE_LARGEFILE'):
20     '''see what we need for largefile support'''
21     if conf.CHECK_CODE('return !(sizeof(off_t) >= 8)',
22                        define,
23                        execute=True,
24                        msg='Checking for large file support'):
25         return True
26     if conf.CHECK_CODE('return !(sizeof(off_t) >= 8)',
27                        define,
28                        execute=True,
29                        cflags='-D_FILE_OFFSET_BITS=64',
30                        msg='Checking for -D_FILE_OFFSET_BITS=64'):
31         conf.DEFINE('_FILE_OFFSET_BITS', 64)
32         return True
33     return False
34
35
36 @conf
37 def CHECK_C_PROTOTYPE(conf, function, prototype, define, headers=None, msg=None):
38     '''verify that a C prototype matches the one on the current system'''
39     if not conf.CHECK_DECLS(function, headers=headers):
40         return False
41     if not msg:
42         msg = 'Checking C prototype for %s' % function
43     return conf.CHECK_CODE('%s; void *_x = (void *)%s' % (prototype, function),
44                            define=define,
45                            local_include=False,
46                            headers=headers,
47                            link=False,
48                            execute=False,
49                            msg=msg)
50
51
52 @conf
53 def CHECK_CHARSET_EXISTS(conf, charset, outcharset='UCS-2LE', headers=None, define=None):
54     '''check that a named charset is able to be used with iconv_open() for conversion
55     to a target charset
56     '''
57     msg = 'Checking if can we convert from %s to %s' % (charset, outcharset)
58     if define is None:
59         define = 'HAVE_CHARSET_%s' % charset.upper().replace('-','_')
60     return conf.CHECK_CODE('''
61                            iconv_t cd = iconv_open("%s", "%s");
62                            if (cd == 0 || cd == (iconv_t)-1) return -1;
63                            ''' % (charset, outcharset),
64                            define=define,
65                            execute=True,
66                            msg=msg,
67                            lib='iconv',
68                            headers=headers)
69
70 def find_config_dir(conf):
71     '''find a directory to run tests in'''
72     k = 0
73     while k < 10000:
74         dir = os.path.join(conf.blddir, '.conf_check_%d' % k)
75         try:
76             shutil.rmtree(dir)
77         except OSError:
78             pass
79         try:
80             os.stat(dir)
81         except:
82             break
83         k += 1
84
85     try:
86         os.makedirs(dir)
87     except:
88         conf.fatal('cannot create a configuration test folder %r' % dir)
89
90     try:
91         os.stat(dir)
92     except:
93         conf.fatal('cannot use the configuration test folder %r' % dir)
94     return dir
95
96 @conf
97 def CHECK_SHLIB_INTRASINC_NAME_FLAGS(conf, msg):
98     '''
99         check if the waf default flags for setting the name of lib
100         are ok
101     '''
102
103     snip = '''
104 int foo(int v) {
105     return v * 2;
106 }
107 '''
108     return conf.check(features='cc cshlib',vnum="1",fragment=snip,msg=msg)
109
110 @conf
111 def CHECK_SHLIB_W_PYTHON(conf, msg):
112     '''check if we need -undefined dynamic_lookup'''
113
114     dir = find_config_dir(conf)
115
116     env = conf.env
117
118     snip = '''
119 #include <Python.h>
120 #include <crt_externs.h>
121 #define environ (*_NSGetEnviron())
122
123 static PyObject *ldb_module = NULL;
124 int foo(int v) {
125     extern char **environ;
126     environ[0] = 1;
127     ldb_module = PyImport_ImportModule("ldb");
128     return v * 2;
129 }'''
130     return conf.check(features='cc cshlib',uselib='PYEMBED',fragment=snip,msg=msg)
131
132 # this one is quite complex, and should probably be broken up
133 # into several parts. I'd quite like to create a set of CHECK_COMPOUND()
134 # functions that make writing complex compound tests like this much easier
135 @conf
136 def CHECK_LIBRARY_SUPPORT(conf, rpath=False, msg=None):
137     '''see if the platform supports building libraries'''
138
139     if msg is None:
140         if rpath:
141             msg = "rpath library support"
142         else:
143             msg = "building library support"
144
145     dir = find_config_dir(conf)
146
147     bdir = os.path.join(dir, 'testbuild')
148     if not os.path.exists(bdir):
149         os.makedirs(bdir)
150
151     env = conf.env
152
153     subdir = os.path.join(dir, "libdir")
154
155     os.makedirs(subdir)
156
157     dest = open(os.path.join(subdir, 'lib1.c'), 'w')
158     dest.write('int lib_func(void) { return 42; }\n')
159     dest.close()
160
161     dest = open(os.path.join(dir, 'main.c'), 'w')
162     dest.write('int main(void) {return !(lib_func() == 42);}\n')
163     dest.close()
164
165     bld = Build.BuildContext()
166     bld.log = conf.log
167     bld.all_envs.update(conf.all_envs)
168     bld.all_envs['default'] = env
169     bld.lst_variants = bld.all_envs.keys()
170     bld.load_dirs(dir, bdir)
171
172     bld.rescan(bld.srcnode)
173
174     bld(features='cc cshlib',
175         source='libdir/lib1.c',
176         target='libdir/lib1',
177         name='lib1')
178
179     o = bld(features='cc cprogram',
180             source='main.c',
181             target='prog1',
182             uselib_local='lib1')
183
184     if rpath:
185         o.rpath=os.path.join(bdir, 'default/libdir')
186
187     # compile the program
188     try:
189         bld.compile()
190     except:
191         conf.check_message(msg, '', False)
192         return False
193
194     # path for execution
195     lastprog = o.link_task.outputs[0].abspath(env)
196
197     if not rpath:
198         if 'LD_LIBRARY_PATH' in os.environ:
199             old_ld_library_path = os.environ['LD_LIBRARY_PATH']
200         else:
201             old_ld_library_path = None
202         ADD_LD_LIBRARY_PATH(os.path.join(bdir, 'default/libdir'))
203
204     # we need to run the program, try to get its result
205     args = conf.SAMBA_CROSS_ARGS(msg=msg)
206     proc = Utils.pproc.Popen([lastprog] + args, stdout=Utils.pproc.PIPE, stderr=Utils.pproc.PIPE)
207     (out, err) = proc.communicate()
208     w = conf.log.write
209     w(str(out))
210     w('\n')
211     w(str(err))
212     w('\nreturncode %r\n' % proc.returncode)
213     ret = (proc.returncode == 0)
214
215     if not rpath:
216         os.environ['LD_LIBRARY_PATH'] = old_ld_library_path or ''
217
218     conf.check_message(msg, '', ret)
219     return ret
220
221
222
223 @conf
224 def CHECK_PERL_MANPAGE(conf, msg=None, section=None):
225     '''work out what extension perl uses for manpages'''
226
227     if msg is None:
228         if section:
229             msg = "perl man%s extension" % section
230         else:
231             msg = "perl manpage generation"
232
233     conf.check_message_1(msg)
234
235     dir = find_config_dir(conf)
236
237     bdir = os.path.join(dir, 'testbuild')
238     if not os.path.exists(bdir):
239         os.makedirs(bdir)
240
241     dest = open(os.path.join(bdir, 'Makefile.PL'), 'w')
242     dest.write("""
243 use ExtUtils::MakeMaker;
244 WriteMakefile(
245     'NAME'      => 'WafTest',
246     'EXE_FILES' => [ 'WafTest' ]
247 );
248 """)
249     dest.close()
250     back = os.path.abspath('.')
251     os.chdir(bdir)
252     proc = Utils.pproc.Popen(['perl', 'Makefile.PL'],
253                              stdout=Utils.pproc.PIPE,
254                              stderr=Utils.pproc.PIPE)
255     (out, err) = proc.communicate()
256     os.chdir(back)
257
258     ret = (proc.returncode == 0)
259     if not ret:
260         conf.check_message_2('not found', color='YELLOW')
261         return
262
263     if section:
264         f = open(os.path.join(bdir,'Makefile'), 'r')
265         man = f.read()
266         f.close()
267         m = re.search('MAN%sEXT\s+=\s+(\w+)' % section, man)
268         if not m:
269             conf.check_message_2('not found', color='YELLOW')
270             return
271         ext = m.group(1)
272         conf.check_message_2(ext)
273         return ext
274
275     conf.check_message_2('ok')
276     return True
277
278
279 @conf
280 def CHECK_COMMAND(conf, cmd, msg=None, define=None, on_target=True, boolean=False):
281     '''run a command and return result'''
282     if msg is None:
283         msg = 'Checking %s' % ' '.join(cmd)
284     conf.COMPOUND_START(msg)
285     cmd = cmd[:]
286     if on_target:
287         cmd.extend(conf.SAMBA_CROSS_ARGS(msg=msg))
288     try:
289         ret = Utils.cmd_output(cmd)
290     except:
291         conf.COMPOUND_END(False)
292         return False
293     if boolean:
294         conf.COMPOUND_END('ok')
295         if define:
296             conf.DEFINE(define, '1')
297     else:
298         ret = ret.strip()
299         conf.COMPOUND_END(ret)
300         if define:
301             conf.DEFINE(define, ret, quote=True)
302     return ret
303
304
305 @conf
306 def CHECK_UNAME(conf):
307     '''setup SYSTEM_UNAME_* defines'''
308     ret = True
309     for v in "sysname machine release version".split():
310         if not conf.CHECK_CODE('''
311                                struct utsname n;
312                                if (uname(&n) == -1) return -1;
313                                printf("%%s", n.%s);
314                                ''' % v,
315                                define='SYSTEM_UNAME_%s' % v.upper(),
316                                execute=True,
317                                define_ret=True,
318                                quote=True,
319                                headers='sys/utsname.h',
320                                local_include=False,
321                                msg="Checking uname %s type" % v):
322             ret = False
323     return ret
324
325 @conf
326 def CHECK_INLINE(conf):
327     '''check for the right value for inline'''
328     conf.COMPOUND_START('Checking for inline')
329     for i in ['inline', '__inline__', '__inline']:
330         ret = conf.CHECK_CODE('''
331         typedef int foo_t;
332         static %s foo_t static_foo () {return 0; }
333         %s foo_t foo () {return 0; }''' % (i, i),
334                               define='INLINE_MACRO',
335                               addmain=False,
336                               link=False)
337         if ret:
338             if i != 'inline':
339                 conf.DEFINE('inline', i, quote=False)
340             break
341     if not ret:
342         conf.COMPOUND_END(ret)
343     else:
344         conf.COMPOUND_END(i)
345     return ret
346
347 @conf
348 def CHECK_XSLTPROC_MANPAGES(conf):
349     '''check if xsltproc can run with the given stylesheets'''
350
351
352     if not conf.CONFIG_SET('XSLTPROC'):
353         conf.find_program('xsltproc', var='XSLTPROC')
354     if not conf.CONFIG_SET('XSLTPROC'):
355         return False
356
357     s='http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
358     conf.CHECK_COMMAND('%s --nonet %s 2> /dev/null' % (conf.env.XSLTPROC, s),
359                              msg='Checking for stylesheet %s' % s,
360                              define='XSLTPROC_MANPAGES', on_target=False,
361                              boolean=True)