1 # a waf tool to add autoconf-like macros to the configure section
2 # and for SAMBA_ macros for building libraries, binaries etc
4 import Build
, os
, sys
, Options
, Task
, Utils
, cc
, TaskGen
, fnmatch
, re
, shutil
, Logs
, Constants
5 from Configure
import conf
7 from samba_utils
import SUBST_VARS_RECURSIVE
8 TaskGen
.task_gen
.apply_verif
= Utils
.nada
10 # bring in the other samba modules
11 from samba_optimisation
import *
12 from samba_utils
import *
13 from samba_version
import *
14 from samba_autoconf
import *
15 from samba_patterns
import *
16 from samba_pidl
import *
17 from samba_autoproto
import *
18 from samba_python
import *
19 from samba_perl
import *
20 from samba_deps
import *
21 from samba_bundled
import *
22 from samba_third_party
import *
25 import samba_conftests
39 # some systems have broken threading in python
40 if os
.environ
.get('WAF_NOTHREADS') == '1':
45 os
.environ
['PYTHONUNBUFFERED'] = '1'
48 if Constants
.HEXVERSION
< 0x105019:
50 Please use the version of waf that comes with Samba, not
51 a system installed version. See http://wiki.samba.org/index.php/Waf
54 Alternatively, please run ./configure and make as usual. That will
55 call the right version of waf.''')
60 def SAMBA_BUILD_ENV(conf
):
61 '''create the samba build environment'''
62 conf
.env
.BUILD_DIRECTORY
= conf
.blddir
63 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
))
64 mkdir_p(os
.path
.join(conf
.blddir
, LIB_PATH
, "private"))
65 mkdir_p(os
.path
.join(conf
.blddir
, "modules"))
66 mkdir_p(os
.path
.join(conf
.blddir
, 'python/samba/dcerpc'))
67 # this allows all of the bin/shared and bin/python targets
68 # to be expressed in terms of build directory paths
69 mkdir_p(os
.path
.join(conf
.blddir
, 'default'))
70 for (source
, target
) in [('shared', 'shared'), ('modules', 'modules'), ('python', 'python_modules')]:
71 link_target
= os
.path
.join(conf
.blddir
, 'default/' + target
)
72 if not os
.path
.lexists(link_target
):
73 os
.symlink('../' + source
, link_target
)
75 # get perl to put the blib files in the build directory
76 blib_bld
= os
.path
.join(conf
.blddir
, 'default/pidl/blib')
77 blib_src
= os
.path
.join(conf
.srcdir
, 'pidl/blib')
78 mkdir_p(blib_bld
+ '/man1')
79 mkdir_p(blib_bld
+ '/man3')
80 if os
.path
.islink(blib_src
):
82 elif os
.path
.exists(blib_src
):
83 shutil
.rmtree(blib_src
)
86 def ADD_INIT_FUNCTION(bld
, subsystem
, target
, init_function
):
87 '''add an init_function to the list for a subsystem'''
88 if init_function
is None:
90 bld
.ASSERT(subsystem
is not None, "You must specify a subsystem for init_function '%s'" % init_function
)
91 cache
= LOCAL_CACHE(bld
, 'INIT_FUNCTIONS')
92 if not subsystem
in cache
:
94 cache
[subsystem
].append( { 'TARGET':target
, 'INIT_FUNCTION':init_function
} )
95 Build
.BuildContext
.ADD_INIT_FUNCTION
= ADD_INIT_FUNCTION
98 def generate_empty_file(task
):
99 task
.outputs
[0].write('')
102 #################################################################
103 def SAMBA_LIBRARY(bld
, libname
, source
,
108 public_headers_install
=True,
109 private_headers
=None,
117 external_library
=False,
119 keep_underscore
=False,
121 autoproto_extra_source
='',
132 target_type
='LIBRARY',
133 bundled_extension
=False,
140 private_library
=False,
141 grouping_library
=False,
142 allow_undefined_symbols
=False,
143 allow_warnings
=False,
145 '''define a Samba library'''
147 if pyembed
and bld
.env
['IS_EXTRA_PYTHON']:
148 public_headers
= None
150 if private_library
and public_headers
:
151 raise Utils
.WafError("private library '%s' must not have public header files" %
154 if LIB_MUST_BE_PRIVATE(bld
, libname
):
155 private_library
= True
158 SET_TARGET_TYPE(bld
, libname
, 'DISABLED')
161 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
163 source
= bld
.SUBDIR(subdir
, source
)
165 # remember empty libraries, so we can strip the dependencies
166 if ((source
== '') or (source
== [])):
167 if deps
== '' and public_deps
== '':
168 SET_TARGET_TYPE(bld
, libname
, 'EMPTY')
170 empty_c
= libname
+ '.empty.c'
171 bld
.SAMBA_GENERATOR('%s_empty_c' % libname
,
172 rule
=generate_empty_file
,
176 if BUILTIN_LIBRARY(bld
, libname
):
179 obj_target
= libname
+ '.objlist'
181 if group
== 'libraries':
182 subsystem_group
= 'main'
184 subsystem_group
= group
186 # first create a target for building the object files for this library
187 # by separating in this way, we avoid recompiling the C files
188 # separately for the install library and the build library
189 bld
.SAMBA_SUBSYSTEM(obj_target
,
192 public_deps
= public_deps
,
194 public_headers
= public_headers
,
195 public_headers_install
= public_headers_install
,
196 private_headers
= private_headers
,
197 header_path
= header_path
,
199 cflags_end
= cflags_end
,
200 group
= subsystem_group
,
201 autoproto
= autoproto
,
202 autoproto_extra_source
=autoproto_extra_source
,
203 depends_on
= depends_on
,
204 hide_symbols
= hide_symbols
,
205 allow_warnings
= allow_warnings
,
208 local_include
= local_include
,
209 global_include
= global_include
)
211 if BUILTIN_LIBRARY(bld
, libname
):
214 if not SET_TARGET_TYPE(bld
, libname
, target_type
):
217 # the library itself will depend on that object target
218 deps
+= ' ' + public_deps
220 deps
.append(obj_target
)
222 realname
= bld
.map_shlib_extension(realname
, python
=(target_type
=='PYTHON'))
223 link_name
= bld
.map_shlib_extension(link_name
, python
=(target_type
=='PYTHON'))
225 # we don't want any public libraries without version numbers
226 if (not private_library
and target_type
!= 'PYTHON' and not realname
):
227 if vnum
is None and soname
is None:
228 raise Utils
.WafError("public library '%s' must have a vnum" %
231 raise Utils
.WafError("public library '%s' must have pkg-config file" %
233 if public_headers
is None and not bld
.env
['IS_EXTRA_PYTHON']:
234 raise Utils
.WafError("public library '%s' must have header files" %
237 if bundled_name
is not None:
239 elif target_type
== 'PYTHON' or realname
or not private_library
:
241 bundled_name
= libname
243 bundled_name
= libname
.replace('_', '-')
245 assert (private_library
== True and realname
is None)
246 if abi_directory
or vnum
or soname
:
247 bundled_extension
=True
248 bundled_name
= PRIVATE_NAME(bld
, libname
.replace('_', '-'),
249 bundled_extension
, private_library
)
251 ldflags
= TO_LIST(ldflags
)
252 if bld
.env
['ENABLE_RELRO'] is True:
253 ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
255 features
= 'c cshlib symlink_lib install_lib'
259 features
+= ' pyembed'
262 features
+= ' abi_check'
264 if pyembed
and bld
.env
['PYTHON_SO_ABI_FLAG']:
265 # For ABI checking, we don't care about the exact Python version.
266 # Replace the Python ABI tag (e.g. ".cpython-35m") by a generic ".py3"
267 abi_flag
= bld
.env
['PYTHON_SO_ABI_FLAG']
268 replacement
= '.py%s' % bld
.env
['PYTHON_VERSION'].split('.')[0]
269 version_libname
= libname
.replace(abi_flag
, replacement
)
271 version_libname
= libname
274 if bld
.env
.HAVE_LD_VERSION_SCRIPT
:
276 version
= "%s_%s" % (Utils
.g_module
.APPNAME
, Utils
.g_module
.VERSION
)
278 version
= "%s_%s" % (libname
, vnum
)
282 vscript
= "%s.vscript" % libname
283 bld
.ABI_VSCRIPT(version_libname
, abi_directory
, version
, vscript
,
285 fullname
= apply_pattern(bundled_name
, bld
.env
.shlib_PATTERN
)
286 fullpath
= bld
.path
.find_or_declare(fullname
)
287 vscriptpath
= bld
.path
.find_or_declare(vscript
)
289 raise Utils
.WafError("unable to find fullpath for %s" % fullname
)
291 raise Utils
.WafError("unable to find vscript path for %s" % vscript
)
292 bld
.add_manual_dependency(fullpath
, vscriptpath
)
294 # also make the .inst file depend on the vscript
295 instname
= apply_pattern(bundled_name
+ '.inst', bld
.env
.shlib_PATTERN
)
296 bld
.add_manual_dependency(bld
.path
.find_or_declare(instname
), bld
.path
.find_or_declare(vscript
))
297 vscript
= os
.path
.join(bld
.path
.abspath(bld
.env
), vscript
)
299 bld
.SET_BUILD_GROUP(group
)
303 target
= bundled_name
,
304 depends_on
= depends_on
,
305 samba_ldflags
= ldflags
,
307 samba_includes
= includes
,
308 version_script
= vscript
,
309 version_libname
= version_libname
,
310 local_include
= local_include
,
311 global_include
= global_include
,
315 samba_inst_path
= install_path
,
317 samba_realname
= realname
,
318 samba_install
= install
,
319 abi_directory
= "%s/%s" % (bld
.path
.abspath(), abi_directory
),
320 abi_match
= abi_match
,
321 private_library
= private_library
,
322 grouping_library
=grouping_library
,
323 allow_undefined_symbols
=allow_undefined_symbols
326 if realname
and not link_name
:
327 link_name
= 'shared/%s' % realname
330 t
.link_name
= link_name
332 if pc_files
is not None and not private_library
:
333 if pyembed
and bld
.env
['IS_EXTRA_PYTHON']:
334 bld
.PKG_CONFIG_FILES(pc_files
, vnum
=vnum
, extra_name
=bld
.env
['PYTHON_SO_ABI_FLAG'])
336 bld
.PKG_CONFIG_FILES(pc_files
, vnum
=vnum
)
338 if (manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and
339 bld
.env
['XSLTPROC_MANPAGES']):
340 bld
.MANPAGES(manpages
, install
)
343 Build
.BuildContext
.SAMBA_LIBRARY
= SAMBA_LIBRARY
346 #################################################################
347 def SAMBA_BINARY(bld
, binname
, source
,
351 private_headers
=None,
358 use_global_deps
=True,
371 '''define a Samba binary'''
374 SET_TARGET_TYPE(bld
, binname
, 'DISABLED')
377 if not SET_TARGET_TYPE(bld
, binname
, 'BINARY'):
380 features
= 'c cprogram symlink_bin install_bin'
382 features
+= ' pyembed'
384 obj_target
= binname
+ '.objlist'
386 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
388 source
= bld
.SUBDIR(subdir
, source
)
389 source
= unique_list(TO_LIST(source
))
391 if group
== 'binaries':
392 subsystem_group
= 'main'
394 subsystem_group
= group
396 # only specify PIE flags for binaries
398 pie_ldflags
= TO_LIST(ldflags
)
399 if bld
.env
['ENABLE_PIE'] is True:
400 pie_cflags
+= ' -fPIE'
401 pie_ldflags
.extend(TO_LIST('-pie'))
402 if bld
.env
['ENABLE_RELRO'] is True:
403 pie_ldflags
.extend(TO_LIST('-Wl,-z,relro,-z,now'))
405 # first create a target for building the object files for this binary
406 # by separating in this way, we avoid recompiling the C files
407 # separately for the install binary and the build binary
408 bld
.SAMBA_SUBSYSTEM(obj_target
,
413 group
= subsystem_group
,
414 autoproto
= autoproto
,
415 subsystem_name
= subsystem_name
,
416 local_include
= local_include
,
417 global_include
= global_include
,
418 use_hostcc
= use_hostcc
,
420 use_global_deps
= use_global_deps
)
422 bld
.SET_BUILD_GROUP(group
)
424 # the binary itself will depend on that object target
426 deps
.append(obj_target
)
433 samba_includes
= includes
,
434 local_include
= local_include
,
435 global_include
= global_include
,
436 samba_modules
= modules
,
438 samba_subsystem
= subsystem_name
,
440 samba_inst_path
= install_path
,
441 samba_install
= install
,
442 samba_ldflags
= pie_ldflags
445 if manpages
is not None and 'XSLTPROC_MANPAGES' in bld
.env
and bld
.env
['XSLTPROC_MANPAGES']:
446 bld
.MANPAGES(manpages
, install
)
448 Build
.BuildContext
.SAMBA_BINARY
= SAMBA_BINARY
451 #################################################################
452 def SAMBA_MODULE(bld
, modname
, source
,
457 module_init_name
='samba_init_module',
459 autoproto_extra_source
='',
461 internal_module
=True,
469 allow_undefined_symbols
=False,
470 allow_warnings
=False,
473 '''define a Samba module.'''
475 bld
.ASSERT(subsystem
, "You must specify a subsystem for SAMBA_MODULE(%s)" % modname
)
477 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
479 source
= bld
.SUBDIR(subdir
, source
)
481 if internal_module
or BUILTIN_LIBRARY(bld
, modname
):
482 # Do not create modules for disabled subsystems
483 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
485 bld
.SAMBA_SUBSYSTEM(modname
, source
,
489 autoproto_extra_source
=autoproto_extra_source
,
491 local_include
=local_include
,
492 global_include
=global_include
,
493 allow_warnings
=allow_warnings
,
496 bld
.ADD_INIT_FUNCTION(subsystem
, modname
, init_function
)
500 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
503 # Do not create modules for disabled subsystems
504 if GET_TARGET_TYPE(bld
, subsystem
) == 'DISABLED':
508 deps
+= ' ' + subsystem
509 while realname
.startswith("lib"+subsystem
+"_"):
510 realname
= realname
[len("lib"+subsystem
+"_"):]
511 while realname
.startswith(subsystem
+"_"):
512 realname
= realname
[len(subsystem
+"_"):]
514 build_name
= "%s_module_%s" % (subsystem
, realname
)
516 realname
= bld
.make_libname(realname
)
517 while realname
.startswith("lib"):
518 realname
= realname
[len("lib"):]
520 build_link_name
= "modules/%s/%s" % (subsystem
, realname
)
523 cflags
+= " -D%s=%s" % (init_function
, module_init_name
)
525 bld
.SAMBA_LIBRARY(modname
,
531 autoproto
= autoproto
,
532 local_include
=local_include
,
533 global_include
=global_include
,
535 bundled_name
=build_name
,
536 link_name
=build_link_name
,
537 install_path
="${MODULESDIR}/%s" % subsystem
,
540 allow_undefined_symbols
=allow_undefined_symbols
,
541 allow_warnings
=allow_warnings
,
546 Build
.BuildContext
.SAMBA_MODULE
= SAMBA_MODULE
549 #################################################################
550 def SAMBA_SUBSYSTEM(bld
, modname
, source
,
555 public_headers_install
=True,
556 private_headers
=None,
561 init_function_sentinel
=None,
563 autoproto_extra_source
='',
566 local_include_first
=True,
571 use_global_deps
=True,
575 allow_warnings
=False,
578 '''define a Samba subsystem'''
581 SET_TARGET_TYPE(bld
, modname
, 'DISABLED')
584 # remember empty subsystems, so we can strip the dependencies
585 if ((source
== '') or (source
== [])):
586 if deps
== '' and public_deps
== '':
587 SET_TARGET_TYPE(bld
, modname
, 'EMPTY')
589 empty_c
= modname
+ '.empty.c'
590 bld
.SAMBA_GENERATOR('%s_empty_c' % modname
,
591 rule
=generate_empty_file
,
595 if not SET_TARGET_TYPE(bld
, modname
, 'SUBSYSTEM'):
598 source
= bld
.EXPAND_VARIABLES(source
, vars=vars)
600 source
= bld
.SUBDIR(subdir
, source
)
601 source
= unique_list(TO_LIST(source
))
603 deps
+= ' ' + public_deps
605 bld
.SET_BUILD_GROUP(group
)
611 features
+= ' pyembed'
617 samba_cflags
= CURRENT_CFLAGS(bld
, modname
, cflags
,
618 allow_warnings
=allow_warnings
,
619 hide_symbols
=hide_symbols
),
620 depends_on
= depends_on
,
621 samba_deps
= TO_LIST(deps
),
622 samba_includes
= includes
,
623 local_include
= local_include
,
624 local_include_first
= local_include_first
,
625 global_include
= global_include
,
626 samba_subsystem
= subsystem_name
,
627 samba_use_hostcc
= use_hostcc
,
628 samba_use_global_deps
= use_global_deps
,
631 if cflags_end
is not None:
632 t
.samba_cflags
.extend(TO_LIST(cflags_end
))
634 if autoproto
is not None:
635 bld
.SAMBA_AUTOPROTO(autoproto
, source
+ TO_LIST(autoproto_extra_source
))
636 if public_headers
is not None:
637 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
638 public_headers_install
=public_headers_install
)
642 Build
.BuildContext
.SAMBA_SUBSYSTEM
= SAMBA_SUBSYSTEM
645 def SAMBA_GENERATOR(bld
, name
, rule
, source
='', target
='',
646 group
='generators', enabled
=True,
648 public_headers_install
=True,
649 private_headers
=None,
654 '''A generic source generator target'''
656 if not SET_TARGET_TYPE(bld
, name
, 'GENERATOR'):
662 dep_vars
.append('ruledeps')
663 dep_vars
.append('SAMBA_GENERATOR_VARS')
665 bld
.SET_BUILD_GROUP(group
)
668 source
=bld
.EXPAND_VARIABLES(source
, vars=vars),
670 shell
=isinstance(rule
, str),
674 samba_type
='GENERATOR',
680 t
.env
.SAMBA_GENERATOR_VARS
= vars
685 if public_headers
is not None:
686 bld
.PUBLIC_HEADERS(public_headers
, header_path
=header_path
,
687 public_headers_install
=public_headers_install
)
689 Build
.BuildContext
.SAMBA_GENERATOR
= SAMBA_GENERATOR
694 def SETUP_BUILD_GROUPS(bld
):
695 '''setup build groups used to ensure that the different build
696 phases happen consecutively'''
697 bld
.p_ln
= bld
.srcnode
# we do want to see all targets!
698 bld
.env
['USING_BUILD_GROUPS'] = True
699 bld
.add_group('setup')
700 bld
.add_group('build_compiler_source')
701 bld
.add_group('vscripts')
702 bld
.add_group('base_libraries')
703 bld
.add_group('generators')
704 bld
.add_group('compiler_prototypes')
705 bld
.add_group('compiler_libraries')
706 bld
.add_group('build_compilers')
707 bld
.add_group('build_source')
708 bld
.add_group('prototypes')
709 bld
.add_group('headers')
710 bld
.add_group('main')
711 bld
.add_group('symbolcheck')
712 bld
.add_group('syslibcheck')
713 bld
.add_group('final')
714 Build
.BuildContext
.SETUP_BUILD_GROUPS
= SETUP_BUILD_GROUPS
717 def SET_BUILD_GROUP(bld
, group
):
718 '''set the current build group'''
719 if not 'USING_BUILD_GROUPS' in bld
.env
:
722 Build
.BuildContext
.SET_BUILD_GROUP
= SET_BUILD_GROUP
727 def ENABLE_TIMESTAMP_DEPENDENCIES(conf
):
728 """use timestamps instead of file contents for deps
729 this currently doesn't work"""
730 def h_file(filename
):
732 st
= os
.stat(filename
)
733 if stat
.S_ISDIR(st
[stat
.ST_MODE
]): raise IOError('not a file')
735 m
.update(str(st
.st_mtime
))
736 m
.update(str(st
.st_size
))
739 Utils
.h_file
= h_file
742 def SAMBA_SCRIPT(bld
, name
, pattern
, installdir
, installname
=None):
743 '''used to copy scripts from the source tree into the build directory
744 for use by selftest'''
746 source
= bld
.path
.ant_glob(pattern
, flat
=True)
748 bld
.SET_BUILD_GROUP('build_source')
749 for s
in TO_LIST(source
):
751 if installname
is not None:
753 target
= os
.path
.join(installdir
, iname
)
754 tgtdir
= os
.path
.dirname(os
.path
.join(bld
.srcnode
.abspath(bld
.env
), '..', target
))
756 link_src
= os
.path
.normpath(os
.path
.join(bld
.curdir
, s
))
757 link_dst
= os
.path
.join(tgtdir
, os
.path
.basename(iname
))
758 if os
.path
.islink(link_dst
) and os
.readlink(link_dst
) == link_src
:
760 if os
.path
.exists(link_dst
):
762 Logs
.info("symlink: %s -> %s/%s" % (s
, installdir
, iname
))
763 os
.symlink(link_src
, link_dst
)
764 Build
.BuildContext
.SAMBA_SCRIPT
= SAMBA_SCRIPT
767 def copy_and_fix_python_path(task
):
768 pattern
='sys.path.insert(0, "bin/python")'
769 if task
.env
["PYTHONARCHDIR"] in sys
.path
and task
.env
["PYTHONDIR"] in sys
.path
:
771 elif task
.env
["PYTHONARCHDIR"] == task
.env
["PYTHONDIR"]:
772 replacement
="""sys.path.insert(0, "%s")""" % task
.env
["PYTHONDIR"]
774 replacement
="""sys.path.insert(0, "%s")
775 sys.path.insert(1, "%s")""" % (task
.env
["PYTHONARCHDIR"], task
.env
["PYTHONDIR"])
777 if task
.env
["PYTHON"][0] == "/":
778 replacement_shebang
= "#!%s\n" % task
.env
["PYTHON"]
780 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PYTHON"]
782 installed_location
=task
.outputs
[0].bldpath(task
.env
)
783 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
784 installed_file
= open(installed_location
, 'w')
786 for line
in source_file
:
788 if (lineno
== 0 and task
.env
["PYTHON_SPECIFIED"] is True and
790 newline
= replacement_shebang
791 elif pattern
in line
:
792 newline
= line
.replace(pattern
, replacement
)
793 installed_file
.write(newline
)
795 installed_file
.close()
796 os
.chmod(installed_location
, 0755)
799 def copy_and_fix_perl_path(task
):
800 pattern
='use lib "$RealBin/lib";'
803 if not task
.env
["PERL_LIB_INSTALL_DIR"] in task
.env
["PERL_INC"]:
804 replacement
= 'use lib "%s";' % task
.env
["PERL_LIB_INSTALL_DIR"]
806 if task
.env
["PERL"][0] == "/":
807 replacement_shebang
= "#!%s\n" % task
.env
["PERL"]
809 replacement_shebang
= "#!/usr/bin/env %s\n" % task
.env
["PERL"]
811 installed_location
=task
.outputs
[0].bldpath(task
.env
)
812 source_file
= open(task
.inputs
[0].srcpath(task
.env
))
813 installed_file
= open(installed_location
, 'w')
815 for line
in source_file
:
817 if lineno
== 0 and task
.env
["PERL_SPECIFIED"] == True and line
[:2] == "#!":
818 newline
= replacement_shebang
819 elif pattern
in line
:
820 newline
= line
.replace(pattern
, replacement
)
821 installed_file
.write(newline
)
823 installed_file
.close()
824 os
.chmod(installed_location
, 0755)
828 def install_file(bld
, destdir
, file, chmod
=MODE_644
, flat
=False,
829 python_fixup
=False, perl_fixup
=False,
830 destname
=None, base_name
=None):
832 destdir
= bld
.EXPAND_VARIABLES(destdir
)
836 destname
= os
.path
.basename(destname
)
837 dest
= os
.path
.join(destdir
, destname
)
839 # fix the path python will use to find Samba modules
840 inst_file
= file + '.inst'
841 bld
.SAMBA_GENERATOR('python_%s' % destname
,
842 rule
=copy_and_fix_python_path
,
843 dep_vars
=["PYTHON","PYTHON_SPECIFIED","PYTHONDIR","PYTHONARCHDIR"],
848 # fix the path perl will use to find Samba modules
849 inst_file
= file + '.inst'
850 bld
.SAMBA_GENERATOR('perl_%s' % destname
,
851 rule
=copy_and_fix_perl_path
,
852 dep_vars
=["PERL","PERL_SPECIFIED","PERL_LIB_INSTALL_DIR"],
857 file = os
.path
.join(base_name
, file)
858 bld
.install_as(dest
, file, chmod
=chmod
)
861 def INSTALL_FILES(bld
, destdir
, files
, chmod
=MODE_644
, flat
=False,
862 python_fixup
=False, perl_fixup
=False,
863 destname
=None, base_name
=None):
864 '''install a set of files'''
865 for f
in TO_LIST(files
):
866 install_file(bld
, destdir
, f
, chmod
=chmod
, flat
=flat
,
867 python_fixup
=python_fixup
, perl_fixup
=perl_fixup
,
868 destname
=destname
, base_name
=base_name
)
869 Build
.BuildContext
.INSTALL_FILES
= INSTALL_FILES
872 def INSTALL_WILDCARD(bld
, destdir
, pattern
, chmod
=MODE_644
, flat
=False,
873 python_fixup
=False, exclude
=None, trim_path
=None):
874 '''install a set of files matching a wildcard pattern'''
875 files
=TO_LIST(bld
.path
.ant_glob(pattern
, flat
=True))
879 files2
.append(os_path_relpath(f
, trim_path
))
884 if fnmatch
.fnmatch(f
, exclude
):
886 INSTALL_FILES(bld
, destdir
, files
, chmod
=chmod
, flat
=flat
,
887 python_fixup
=python_fixup
, base_name
=trim_path
)
888 Build
.BuildContext
.INSTALL_WILDCARD
= INSTALL_WILDCARD
890 def INSTALL_DIR(bld
, path
, chmod
=0o755, env
=None):
891 """Install a directory if it doesn't exist, always set permissions."""
896 destpath
= bld
.get_install_path(path
, env
)
898 if bld
.is_install
> 0:
899 if not os
.path
.isdir(destpath
):
901 os
.makedirs(destpath
)
902 os
.chmod(destpath
, chmod
)
904 if not os
.path
.isdir(destpath
):
905 raise Utils
.WafError("Cannot create the folder '%s' (error: %s)" % (path
, e
))
906 Build
.BuildContext
.INSTALL_DIR
= INSTALL_DIR
908 def INSTALL_DIRS(bld
, destdir
, dirs
, chmod
=0o755, env
=None):
909 '''install a set of directories'''
910 destdir
= bld
.EXPAND_VARIABLES(destdir
)
911 dirs
= bld
.EXPAND_VARIABLES(dirs
)
912 for d
in TO_LIST(dirs
):
913 INSTALL_DIR(bld
, os
.path
.join(destdir
, d
), chmod
, env
)
914 Build
.BuildContext
.INSTALL_DIRS
= INSTALL_DIRS
917 def MANPAGES(bld
, manpages
, install
):
918 '''build and install manual pages'''
919 bld
.env
.MAN_XSL
= 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
920 for m
in manpages
.split():
922 bld
.SAMBA_GENERATOR(m
,
926 rule
='${XSLTPROC} --xinclude -o ${TGT} --nonet ${MAN_XSL} ${SRC}'
929 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
930 Build
.BuildContext
.MANPAGES
= MANPAGES
932 def SAMBAMANPAGES(bld
, manpages
, extra_source
=None):
933 '''build and install manual pages'''
934 bld
.env
.SAMBA_EXPAND_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/expand-sambadoc.xsl'
935 bld
.env
.SAMBA_MAN_XSL
= bld
.srcnode
.abspath() + '/docs-xml/xslt/man.xsl'
936 bld
.env
.SAMBA_CATALOG
= bld
.srcnode
.abspath() + '/bin/default/docs-xml/build/catalog.xml'
937 bld
.env
.SAMBA_CATALOGS
= 'file:///etc/xml/catalog file:///usr/local/share/xml/catalog file://' + bld
.env
.SAMBA_CATALOG
939 for m
in manpages
.split():
941 if extra_source
is not None:
942 source
= [source
, extra_source
]
943 bld
.SAMBA_GENERATOR(m
,
947 dep_vars
=['SAMBA_MAN_XSL', 'SAMBA_EXPAND_XSL', 'SAMBA_CATALOG'],
948 rule
='''XML_CATALOG_FILES="${SAMBA_CATALOGS}"
949 export XML_CATALOG_FILES
950 ${XSLTPROC} --xinclude --stringparam noreference 0 -o ${TGT}.xml --nonet ${SAMBA_EXPAND_XSL} ${SRC[0].abspath(env)}
951 ${XSLTPROC} --nonet -o ${TGT} ${SAMBA_MAN_XSL} ${TGT}.xml'''
953 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
, flat
=True)
954 Build
.BuildContext
.SAMBAMANPAGES
= SAMBAMANPAGES
956 #############################################################
957 # give a nicer display when building different types of files
958 def progress_display(self
, msg
, fname
):
959 col1
= Logs
.colors(self
.color
)
960 col2
= Logs
.colors
.NORMAL
961 total
= self
.position
[1]
963 fs
= '[%%%dd/%%%dd] %s %%s%%s%%s\n' % (n
, n
, msg
)
964 return fs
% (self
.position
[0], self
.position
[1], col1
, fname
, col2
)
966 def link_display(self
):
967 if Options
.options
.progress_bar
!= 0:
968 return Task
.Task
.old_display(self
)
969 fname
= self
.outputs
[0].bldpath(self
.env
)
970 return progress_display(self
, 'Linking', fname
)
971 Task
.TaskBase
.classes
['cc_link'].display
= link_display
973 def samba_display(self
):
974 if Options
.options
.progress_bar
!= 0:
975 return Task
.Task
.old_display(self
)
977 targets
= LOCAL_CACHE(self
, 'TARGET_TYPE')
978 if self
.name
in targets
:
979 target_type
= targets
[self
.name
]
980 type_map
= { 'GENERATOR' : 'Generating',
981 'PROTOTYPE' : 'Generating'
983 if target_type
in type_map
:
984 return progress_display(self
, type_map
[target_type
], self
.name
)
986 if len(self
.inputs
) == 0:
987 return Task
.Task
.old_display(self
)
989 fname
= self
.inputs
[0].bldpath(self
.env
)
990 if fname
[0:3] == '../':
992 ext_loc
= fname
.rfind('.')
994 return Task
.Task
.old_display(self
)
995 ext
= fname
[ext_loc
:]
997 ext_map
= { '.idl' : 'Compiling IDL',
998 '.et' : 'Compiling ERRTABLE',
999 '.asn1': 'Compiling ASN1',
1000 '.c' : 'Compiling' }
1002 return progress_display(self
, ext_map
[ext
], fname
)
1003 return Task
.Task
.old_display(self
)
1005 Task
.TaskBase
.classes
['Task'].old_display
= Task
.TaskBase
.classes
['Task'].display
1006 Task
.TaskBase
.classes
['Task'].display
= samba_display
1009 @after('apply_link')
1011 def apply_bundle_remove_dynamiclib_patch(self
):
1012 if self
.env
['MACBUNDLE'] or getattr(self
,'mac_bundle',False):
1013 if not getattr(self
,'vnum',None):
1015 self
.env
['LINKFLAGS'].remove('-dynamiclib')
1016 self
.env
['LINKFLAGS'].remove('-single_module')