r10323: Add first bits required for getting compile with scons working. This does
authorJelmer Vernooij <jelmer@samba.org>
Mon, 19 Sep 2005 19:19:10 +0000 (19:19 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:38:25 +0000 (13:38 -0500)
not work yet and can exist parallel with the existing build system.

source/SConstruct [new file with mode: 0644]
source/lib/SConscript [new file with mode: 0644]
source/lib/charset/SConscript [new file with mode: 0644]
source/lib/cmdline/SConscript [new file with mode: 0644]
source/lib/popt/SConscript [new file with mode: 0644]
source/lib/registry/SConscript [new file with mode: 0644]
source/lib/talloc/SConscript [new file with mode: 0644]
source/param/SConscript [new file with mode: 0644]

diff --git a/source/SConstruct b/source/SConstruct
new file mode 100644 (file)
index 0000000..3c8a54e
--- /dev/null
@@ -0,0 +1,34 @@
+# This is the experimental scons build script for Samba 4. For a proper 
+# build use the old build system (configure + make). scons will 
+# eventually replace this system.
+
+hostenv = Environment(CCFLAGS='-Iinclude -I. -Ilib ')
+hostenv.Append(CCFLAGS=' -Iheimdal_build -Iheimdal/lib/krb5 -Iheimdal/lib/hdb -Iheimdal/lib/gssapi -Iheimdal/lib/asn1 -Iheimdal/lib/des -Iheimdal/kdc -Iheimdal/lib/roken -Iheimdal/lib/com_err')
+buildenv = hostenv.Copy()
+
+SConscript('param/SConscript','hostenv')
+SConscript('lib/SConscript','hostenv')
+
+dynenv = hostenv.Copy()
+
+paths = { 
+       'BINDIR': "bin",
+       'SBINDIR': "sbin",
+       'CONFIGFILE': "cfg",
+       'LOGFILEBASE': "lfb",
+       'NCALRPCDIR': "ncalrpc",
+       'LMHOSTSFILE': "lmhosts",
+       'LIBDIR': "libdir",
+       'SHLIBEXT': "ext",
+       'LOCKDIR': "lockdir",
+       'PIDDIR': "piddir",
+       'SMB_PASSWD_FILE': "smbpasswd",
+       'PRIVATE_DIR': 'private',
+       'SWATDIR': "swat"
+}
+
+for i in paths:
+       dynenv.Append(CCFLAGS=' -D'+i+'=\\"'+paths[i]+'\\"')
+       
+dynconfig = dynenv.Object('dynconfig.c')
+Export('dynconfig')
diff --git a/source/lib/SConscript b/source/lib/SConscript
new file mode 100644 (file)
index 0000000..57427fe
--- /dev/null
@@ -0,0 +1,25 @@
+Import('hostenv')
+basic = hostenv.StaticLibrary('basic', 
+       ['version.c', 'xfile.c', 'debug.c', 'fault.c', 'pidfile.c',
+        'signal.c', 'system.c', 'time.c', 'genrand.c', 'dprintf.c',
+        'util_str.c', 'util_strlist.c', 'util_unistr.c', 'util_file.c',
+        'data_blob.c', 'util.c', 'util_sock.c', 'substitute.c', 
+        'fsusage.c', 'ms_fnmatch.c', 'select.c', 'mutex.c', 'idtree.c',
+        'unix_privs.c', 'db_wrap.c', 'gendb.c', 'credentials.c'])
+Export('basic')
+
+hostenv.StaticLibrary('netif', ['netif/interface.c', 'netif/netif.c'])
+hostenv.StaticLibrary('tdr', ['tdr/tdr.c'])
+hostenv.StaticLibrary('crypto', 
+               ['crypto/crc32.c','crypto/md5.c','crypto/hmacmd5.c',
+               'crypto/md4.c','crypto/arcfour.c'])
+hostenv.StaticLibrary('compression', ['compression/mszip.c'])
+hostenv.StaticLibrary('gencache',['gencache.c'])
+hostenv.StaticLibrary('pidfile',['pidfile.c'])
+hostenv.StaticLibrary('unix_privs',['unix_privs.c'])
+
+SConscript('popt/SConscript','hostenv')
+SConscript('cmdline/SConscript','hostenv')
+SConscript('talloc/SConscript','hostenv')
+SConscript('registry/SConscript','hostenv')
+SConscript('charset/SConscript', 'hostenv')
diff --git a/source/lib/charset/SConscript b/source/lib/charset/SConscript
new file mode 100644 (file)
index 0000000..0b67bed
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+charset = hostenv.StaticLibrary('charset',['iconv.c','charcnv.c'])
+Export('charset')
diff --git a/source/lib/cmdline/SConscript b/source/lib/cmdline/SConscript
new file mode 100644 (file)
index 0000000..7b5c14d
--- /dev/null
@@ -0,0 +1,4 @@
+Import('hostenv')
+Import('basic param')
+popt_common = hostenv.StaticLibrary('popt_common',['popt_common.c',basic,param])
+Export('popt_common')
diff --git a/source/lib/popt/SConscript b/source/lib/popt/SConscript
new file mode 100644 (file)
index 0000000..90801ff
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+popt = hostenv.StaticLibrary('popt', ['findme.c','popt.c','poptconfig.c','popthelp.c','poptparse.c'])
+Export('popt')
diff --git a/source/lib/registry/SConscript b/source/lib/registry/SConscript
new file mode 100644 (file)
index 0000000..f631792
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+Import('talloc basic popt_common popt param')
+registry = hostenv.StaticLibrary('registry',
+                       [basic,talloc,'common/reg_interface.c','common/reg_util.c'])
+hostenv.Program('regtree', ['tools/regtree.c',registry,talloc,basic,popt_common,popt,param])
diff --git a/source/lib/talloc/SConscript b/source/lib/talloc/SConscript
new file mode 100644 (file)
index 0000000..e3851af
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+talloc = hostenv.StaticLibrary('talloc',['talloc.c'])
+Export('talloc')
diff --git a/source/param/SConscript b/source/param/SConscript
new file mode 100644 (file)
index 0000000..42d3d9c
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+param = hostenv.StaticLibrary('loadparm',['loadparm.c','params.c'])
+Export('param')
+generic = hostenv.StaticLibrary('generic',['generic.c'])
+Export('generic')