summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-02-21 00:40:26 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:33 +1000
commitf5d85a31d9e5357a4faab952f8d59aa7c8fc3f8d (patch)
tree5226951f3239fc05eb1da1717a9720fe65439fe3
parent2bd0756dc5cef0f364dc569032b45066867ec10e (diff)
downloadsamba-f5d85a31d9e5357a4faab952f8d59aa7c8fc3f8d.tar.gz
samba-f5d85a31d9e5357a4faab952f8d59aa7c8fc3f8d.tar.bz2
samba-f5d85a31d9e5357a4faab952f8d59aa7c8fc3f8d.zip
build: added some comments for tdb build
-rw-r--r--lib/replace/wafsamba.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/lib/replace/wafsamba.py b/lib/replace/wafsamba.py
index 2d12d1cec8..07eb1c9cfc 100644
--- a/lib/replace/wafsamba.py
+++ b/lib/replace/wafsamba.py
@@ -1,8 +1,14 @@
# a waf tool to add autoconf-like macros to the configure section
+# and for SAMBA_ macros for building libraries, binaries etc
import Build
from Configure import conf
+
+####################################################
+# some autoconf like helpers, to make the transition
+# to waf a bit easier for those used to autoconf
+# m4 files
@conf
def DEFUN(conf, d, v):
conf.define(d, v, quote=False)
@@ -40,8 +46,11 @@ def CHECK_FUNCS_IN(conf, list, library):
for f in list.rsplit(' '):
conf.check(function_name=f, lib=library, header_name=conf.env.hlist)
+################################################################
+# magic rpath handling
+#
# we want a different rpath when installing and when building
-# this should really check if rpath is available on this platform
+# Note that this should really check if rpath is available on this platform
# and it should also honor an --enable-rpath option
def set_rpath(bld):
import Options
@@ -51,9 +60,11 @@ def set_rpath(bld):
bld.env.append_value('RPATH', '-Wl,-rpath=build/default')
Build.BuildContext.set_rpath = set_rpath
+################################################################
# this will contain the set of includes needed per Samba library
Build.BuildContext.SAMBA_LIBRARY_INCLUDES = {}
+################################################################
# this will contain the library dependencies of each Samba library
Build.BuildContext.SAMBA_LIBRARY_DEPS = {}
@@ -67,6 +78,7 @@ def SAMBA_LIBRARY_INCLUDE_LIST(bld, libdeps):
return ret
Build.BuildContext.SAMBA_LIBRARY_INCLUDE_LIST = SAMBA_LIBRARY_INCLUDE_LIST
+
#################################################################
# define a Samba library
def SAMBA_LIBRARY(bld, libname, source_list, libdeps='', include_list=''):
@@ -90,9 +102,9 @@ def SAMBA_BINARY(bld, binname, source_list, libdeps='', include_list=''):
includes = bld.SAMBA_LIBRARY_INCLUDE_LIST(libdeps) + include_list)
Build.BuildContext.SAMBA_BINARY = SAMBA_BINARY
-
+############################################################
# this overrides the normal -v debug output to be in a nice
-# unix like format
+# unix like format. Thanks to ita on #waf for this
def exec_command(self, cmd, **kw):
import Utils
from Logs import debug