1 # a set of config tests that use the samba_autoconf functions
2 # to test for commonly needed configuration options
5 import Build
, Configure
, Utils
6 from Configure
import conf
8 from samba_utils
import *
11 def add_option(self
, *k
, **kw
):
12 '''syntax help: provide the "match" attribute to opt.add_option() so that folders can be added to specific config tests'''
13 match
= kw
.get('match', [])
16 opt
= self
.parser
.add_option(*k
, **kw
)
19 Options
.Handler
.add_option
= add_option
22 def check(self
, *k
, **kw
):
23 '''Override the waf defaults to inject --with-directory options'''
26 kw
['env'] = self
.env
.copy()
28 # match the configuration test with speficic options, for example:
29 # --with-libiconv -> Options.options.iconv_open -> "Checking for library iconv"
33 for x
in Options
.Handler
.parser
.parser
.option_list
:
34 if getattr(x
, 'match', None) and msg
in x
.match
:
35 d
= getattr(Options
.options
, x
.dest
, '')
37 additional_dirs
.append(d
)
39 # we add the additional dirs twice: once for the test data, and again if the compilation test suceeds below
40 def add_options_dir(dirs
, env
):
42 if not x
in env
.CPPPATH
:
43 env
.CPPPATH
= [os
.path
.join(x
, 'include')] + env
.CPPPATH
44 if not x
in env
.LIBPATH
:
45 env
.LIBPATH
= [os
.path
.join(x
, 'lib')] + env
.LIBPATH
47 add_options_dir(additional_dirs
, kw
['env'])
50 self
.check_message_1(kw
['msg'])
53 ret
= self
.run_c_code(*k
, **kw
)
54 except Configure
.ConfigurationError
, e
:
55 self
.check_message_2(kw
['errmsg'], 'YELLOW')
56 if 'mandatory' in kw
and kw
['mandatory']:
60 self
.fatal('the configuration failed (see %r)' % self
.log
.name
)
63 self
.check_message_2(self
.ret_msg(kw
['okmsg'], kw
))
65 # success! keep the CPPPATH/LIBPATH
66 add_options_dir(additional_dirs
, self
.env
)
68 self
.post_check(*k
, **kw
)
69 if not kw
.get('execute', False):
75 def CHECK_ICONV(conf
, define
='HAVE_NATIVE_ICONV'):
76 '''check if the iconv library is installed
77 optionally pass a define'''
78 if conf
.CHECK_FUNCS_IN('iconv_open', 'iconv', checklibc
=True, headers
='iconv.h'):
79 conf
.DEFINE(define
, 1)
85 def CHECK_LARGEFILE(conf
, define
='HAVE_LARGEFILE'):
86 '''see what we need for largefile support'''
87 getconf_cflags
= conf
.CHECK_COMMAND(['getconf', 'LFS_CFLAGS']);
88 if getconf_cflags
is not False:
89 if (conf
.CHECK_CODE('return !(sizeof(off_t) >= 8)',
90 define
='WORKING_GETCONF_LFS_CFLAGS',
92 cflags
=getconf_cflags
,
93 msg
='Checking getconf large file support flags work')):
94 conf
.ADD_CFLAGS(getconf_cflags
)
95 getconf_cflags_list
=TO_LIST(getconf_cflags
)
96 for flag
in getconf_cflags_list
:
98 flag_split
= flag
[2:].split('=')
99 if len(flag_split
) == 1:
100 conf
.DEFINE(flag_split
[0], '1')
102 conf
.DEFINE(flag_split
[0], flag_split
[1])
104 if conf
.CHECK_CODE('return !(sizeof(off_t) >= 8)',
107 msg
='Checking for large file support without additional flags'):
110 if conf
.CHECK_CODE('return !(sizeof(off_t) >= 8)',
113 cflags
='-D_FILE_OFFSET_BITS=64',
114 msg
='Checking for -D_FILE_OFFSET_BITS=64'):
115 conf
.DEFINE('_FILE_OFFSET_BITS', 64)
118 if conf
.CHECK_CODE('return !(sizeof(off_t) >= 8)',
121 cflags
='-D_LARGE_FILES',
122 msg
='Checking for -D_LARGE_FILES'):
123 conf
.DEFINE('_LARGE_FILES', 1)
129 def CHECK_C_PROTOTYPE(conf
, function
, prototype
, define
, headers
=None, msg
=None):
130 '''verify that a C prototype matches the one on the current system'''
131 if not conf
.CHECK_DECLS(function
, headers
=headers
):
134 msg
= 'Checking C prototype for %s' % function
135 return conf
.CHECK_CODE('%s; void *_x = (void *)%s' % (prototype
, function
),
145 def CHECK_CHARSET_EXISTS(conf
, charset
, outcharset
='UCS-2LE', headers
=None, define
=None):
146 '''check that a named charset is able to be used with iconv_open() for conversion
149 msg
= 'Checking if can we convert from %s to %s' % (charset
, outcharset
)
151 define
= 'HAVE_CHARSET_%s' % charset
.upper().replace('-','_')
152 return conf
.CHECK_CODE('''
153 iconv_t cd = iconv_open("%s", "%s");
154 if (cd == 0 || cd == (iconv_t)-1) return -1;
155 ''' % (charset
, outcharset
),
162 def find_config_dir(conf
):
163 '''find a directory to run tests in'''
166 dir = os
.path
.join(conf
.blddir
, '.conf_check_%d' % k
)
180 conf
.fatal('cannot create a configuration test folder %r' % dir)
185 conf
.fatal('cannot use the configuration test folder %r' % dir)
189 def CHECK_SHLIB_INTRASINC_NAME_FLAGS(conf
, msg
):
191 check if the waf default flags for setting the name of lib
200 return conf
.check(features
='cc cshlib',vnum
="1",fragment
=snip
,msg
=msg
)
203 def CHECK_NEED_LC(conf
, msg
):
204 '''check if we need -lc'''
206 dir = find_config_dir(conf
)
210 bdir
= os
.path
.join(dir, 'testbuild2')
211 if not os
.path
.exists(bdir
):
215 subdir
= os
.path
.join(dir, "liblctest")
219 dest
= open(os
.path
.join(subdir
, 'liblc1.c'), 'w')
220 dest
.write('#include <stdio.h>\nint lib_func(void) { FILE *f = fopen("foo", "r");}\n')
223 bld
= Build
.BuildContext()
225 bld
.all_envs
.update(conf
.all_envs
)
226 bld
.all_envs
['default'] = env
227 bld
.lst_variants
= bld
.all_envs
.keys()
228 bld
.load_dirs(dir, bdir
)
230 bld
.rescan(bld
.srcnode
)
232 bld(features
='cc cshlib',
233 source
='liblctest/liblc1.c',
234 ldflags
=conf
.env
['EXTRA_LDFLAGS'],
240 conf
.check_message(msg
, '', True)
243 conf
.check_message(msg
, '', False)
248 def CHECK_SHLIB_W_PYTHON(conf
, msg
):
249 '''check if we need -undefined dynamic_lookup'''
251 dir = find_config_dir(conf
)
257 #include <crt_externs.h>
258 #define environ (*_NSGetEnviron())
260 static PyObject *ldb_module = NULL;
262 extern char **environ;
264 ldb_module = PyImport_ImportModule("ldb");
267 return conf
.check(features
='cc cshlib',uselib
='PYEMBED',fragment
=snip
,msg
=msg
)
269 # this one is quite complex, and should probably be broken up
270 # into several parts. I'd quite like to create a set of CHECK_COMPOUND()
271 # functions that make writing complex compound tests like this much easier
273 def CHECK_LIBRARY_SUPPORT(conf
, rpath
=False, version_script
=False, msg
=None):
274 '''see if the platform supports building libraries'''
278 msg
= "rpath library support"
280 msg
= "building library support"
282 dir = find_config_dir(conf
)
284 bdir
= os
.path
.join(dir, 'testbuild')
285 if not os
.path
.exists(bdir
):
290 subdir
= os
.path
.join(dir, "libdir")
294 dest
= open(os
.path
.join(subdir
, 'lib1.c'), 'w')
295 dest
.write('int lib_func(void) { return 42; }\n')
298 dest
= open(os
.path
.join(dir, 'main.c'), 'w')
299 dest
.write('int main(void) {return !(lib_func() == 42);}\n')
302 bld
= Build
.BuildContext()
304 bld
.all_envs
.update(conf
.all_envs
)
305 bld
.all_envs
['default'] = env
306 bld
.lst_variants
= bld
.all_envs
.keys()
307 bld
.load_dirs(dir, bdir
)
309 bld
.rescan(bld
.srcnode
)
313 ldflags
.append("-Wl,--version-script=%s/vscript" % bld
.path
.abspath())
314 dest
= open(os
.path
.join(dir,'vscript'), 'w')
315 dest
.write('TEST_1.0A2 { global: *; };\n')
318 bld(features
='cc cshlib',
319 source
='libdir/lib1.c',
320 target
='libdir/lib1',
324 o
= bld(features
='cc cprogram',
330 o
.rpath
=os
.path
.join(bdir
, 'default/libdir')
332 # compile the program
336 conf
.check_message(msg
, '', False)
340 lastprog
= o
.link_task
.outputs
[0].abspath(env
)
343 if 'LD_LIBRARY_PATH' in os
.environ
:
344 old_ld_library_path
= os
.environ
['LD_LIBRARY_PATH']
346 old_ld_library_path
= None
347 ADD_LD_LIBRARY_PATH(os
.path
.join(bdir
, 'default/libdir'))
349 # we need to run the program, try to get its result
350 args
= conf
.SAMBA_CROSS_ARGS(msg
=msg
)
351 proc
= Utils
.pproc
.Popen([lastprog
] + args
, stdout
=Utils
.pproc
.PIPE
, stderr
=Utils
.pproc
.PIPE
)
352 (out
, err
) = proc
.communicate()
357 w('\nreturncode %r\n' % proc
.returncode
)
358 ret
= (proc
.returncode
== 0)
361 os
.environ
['LD_LIBRARY_PATH'] = old_ld_library_path
or ''
363 conf
.check_message(msg
, '', ret
)
369 def CHECK_PERL_MANPAGE(conf
, msg
=None, section
=None):
370 '''work out what extension perl uses for manpages'''
374 msg
= "perl man%s extension" % section
376 msg
= "perl manpage generation"
378 conf
.check_message_1(msg
)
380 dir = find_config_dir(conf
)
382 bdir
= os
.path
.join(dir, 'testbuild')
383 if not os
.path
.exists(bdir
):
386 dest
= open(os
.path
.join(bdir
, 'Makefile.PL'), 'w')
388 use ExtUtils::MakeMaker;
391 'EXE_FILES' => [ 'WafTest' ]
395 back
= os
.path
.abspath('.')
397 proc
= Utils
.pproc
.Popen(['perl', 'Makefile.PL'],
398 stdout
=Utils
.pproc
.PIPE
,
399 stderr
=Utils
.pproc
.PIPE
)
400 (out
, err
) = proc
.communicate()
403 ret
= (proc
.returncode
== 0)
405 conf
.check_message_2('not found', color
='YELLOW')
409 f
= open(os
.path
.join(bdir
,'Makefile'), 'r')
412 m
= re
.search('MAN%sEXT\s+=\s+(\w+)' % section
, man
)
414 conf
.check_message_2('not found', color
='YELLOW')
417 conf
.check_message_2(ext
)
420 conf
.check_message_2('ok')
425 def CHECK_COMMAND(conf
, cmd
, msg
=None, define
=None, on_target
=True, boolean
=False):
426 '''run a command and return result'''
428 msg
= 'Checking %s' % ' '.join(cmd
)
429 conf
.COMPOUND_START(msg
)
432 cmd
.extend(conf
.SAMBA_CROSS_ARGS(msg
=msg
))
434 ret
= Utils
.cmd_output(cmd
)
436 conf
.COMPOUND_END(False)
439 conf
.COMPOUND_END('ok')
441 conf
.DEFINE(define
, '1')
444 conf
.COMPOUND_END(ret
)
446 conf
.DEFINE(define
, ret
, quote
=True)
451 def CHECK_UNAME(conf
):
452 '''setup SYSTEM_UNAME_* defines'''
454 for v
in "sysname machine release version".split():
455 if not conf
.CHECK_CODE('''
457 if (uname(&n) == -1) return -1;
460 define
='SYSTEM_UNAME_%s' % v
.upper(),
464 headers
='sys/utsname.h',
466 msg
="Checking uname %s type" % v
):
471 def CHECK_INLINE(conf
):
472 '''check for the right value for inline'''
473 conf
.COMPOUND_START('Checking for inline')
474 for i
in ['inline', '__inline__', '__inline']:
475 ret
= conf
.CHECK_CODE('''
477 static %s foo_t static_foo () {return 0; }
478 %s foo_t foo () {return 0; }''' % (i
, i
),
479 define
='INLINE_MACRO',
484 conf
.DEFINE('inline', i
, quote
=False)
487 conf
.COMPOUND_END(ret
)
493 def CHECK_XSLTPROC_MANPAGES(conf
):
494 '''check if xsltproc can run with the given stylesheets'''
497 if not conf
.CONFIG_SET('XSLTPROC'):
498 conf
.find_program('xsltproc', var
='XSLTPROC')
499 if not conf
.CONFIG_SET('XSLTPROC'):
502 s
='http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
503 conf
.CHECK_COMMAND('%s --nonet %s 2> /dev/null' % (conf
.env
.XSLTPROC
, s
),
504 msg
='Checking for stylesheet %s' % s
,
505 define
='XSLTPROC_MANPAGES', on_target
=False,
507 if not conf
.CONFIG_SET('XSLTPROC_MANPAGES'):
508 print "A local copy of the docbook.xsl wasn't found on your system" \
509 " consider installing package like docbook-xsl"
512 # Determine the standard libpath for the used compiler,
513 # so we can later use that to filter out these standard
514 # library paths when some tools like cups-config or
515 # python-config report standard lib paths with their
519 def CHECK_STANDARD_LIBPATH(conf
):
520 # at least gcc and clang support this:
522 cmd
= conf
.env
.CC
+ ['-print-search-dirs']
523 out
= Utils
.cmd_output(cmd
).split('\n')
525 # option not supported by compiler - use a standard list of directories
526 dirlist
= [ '/usr/lib', '/usr/lib64' ]
528 raise Utils
.WafError('Unexpected error running "%s"' % (cmd
))
533 if line
.startswith("libraries: ="):
534 dirliststr
= line
[len("libraries: ="):]
535 dirlist
= [ os
.path
.normpath(x
) for x
in dirliststr
.split(':') ]
538 conf
.env
.STANDARD_LIBPATH
= dirlist
541 waf_config_c_parse_flags
= config_c
.parse_flags
;
542 def samba_config_c_parse_flags(line1
, uselib
, env
):
544 # We do a special treatment of the rpath components
545 # in the linkflags line, because currently the upstream
546 # parse_flags function is incomplete with respect to
547 # treatment of the rpath. The remainder of the linkflags
548 # line is later passed to the original funcion.
550 lst1
= shlex
.split(line1
)
556 # NOTE on special treatment of -Wl,-R and -Wl,-rpath:
558 # It is important to not put a library provided RPATH
559 # into the LINKFLAGS but in the RPATH instead, since
560 # the provided LINKFLAGS get prepended to our own internal
561 # RPATH later, and hence can potentially lead to linking
562 # in too old versions of our internal libs.
564 # We do this filtering here on our own because of some
565 # bugs in the real parse_flags() function.
567 if x
== '-Wl,-rpath' or x
== '-Wl,-R':
570 if x
.startswith('-Wl,'):
574 elif x
.startswith('-Wl,-R,'):
576 elif x
.startswith('-Wl,-R'):
578 elif x
.startswith('-Wl,-rpath,'):
584 env
.append_value('RPATH_' + uselib
, rpath
)
586 line2
= ' '.join(lst2
)
587 waf_config_c_parse_flags(line2
, uselib
, env
)
590 config_c
.parse_flags
= samba_config_c_parse_flags