r10348: Add scons scripts for remaining subsystems. Most subsystems build now,
authorJelmer Vernooij <jelmer@samba.org>
Tue, 20 Sep 2005 11:59:03 +0000 (11:59 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:38:30 +0000 (13:38 -0500)
but final linking still fails (as does generating files asn1, et, idl and proto
files)

49 files changed:
source/SConstruct
source/auth/SConscript
source/auth/gensec/SConscript [new file with mode: 0644]
source/auth/kerberos/SConscript [new file with mode: 0644]
source/auth/ntlmssp/SConscript [new file with mode: 0644]
source/build/scons/asn1.py [new file with mode: 0644]
source/build/scons/et.py [new file with mode: 0644]
source/cldap_server/SConscript
source/client/SConscript
source/dsdb/SConscript
source/gtk/SConscript
source/heimdal_build/SConscript [new file with mode: 0644]
source/kdc/SConscript [new file with mode: 0644]
source/ldap_server/SConscript
source/lib/SConscript
source/lib/appweb/SConscript [new file with mode: 0644]
source/lib/appweb/ejs/config.mk [deleted file]
source/lib/charset/SConscript
source/lib/cmdline/SConscript
source/lib/com/SConscript [new file with mode: 0644]
source/lib/events/SConscript [new file with mode: 0644]
source/lib/messaging/SConscript
source/lib/popt/SConscript
source/lib/registry/SConscript
source/lib/replace/SConscript
source/lib/samba3/SConscript
source/lib/socket/SConscript
source/lib/socket_wrapper/SConscript
source/lib/talloc/SConscript
source/lib/tls/SConscript
source/libcli/SConscript
source/libcli/auth/SConscript [new file with mode: 0644]
source/libcli/ldap/SConscript [new file with mode: 0644]
source/libcli/security/SConscript [new file with mode: 0644]
source/libnet/SConscript
source/librpc/SConscript
source/nbt_server/SConscript
source/nsswitch/SConscript
source/ntptr/SConscript [new file with mode: 0644]
source/ntvfs/SConscript [new file with mode: 0644]
source/ntvfs/posix/SConscript [new file with mode: 0644]
source/ntvfs/unixuid/SConscript [new file with mode: 0644]
source/param/SConscript
source/scripting/SConscript [new file with mode: 0644]
source/scripting/ejs/SConscript [new file with mode: 0644]
source/smb_server/SConscript [new file with mode: 0644]
source/torture/SConscript
source/utils/SConscript [new file with mode: 0644]
source/winbind/SConscript [new file with mode: 0644]

index ad63a292f4951b04da90bbe20155e8c4d280f222..99eabe9308ed6105f15800155f0c494f35c3f624 100644 (file)
@@ -20,7 +20,13 @@ hostenv.Append(CPPPATH = ['#heimdal_build', '#heimdal/lib/krb5',
                          '#heimdal/kdc', '#heimdal/lib/roken',
                          '#heimdal/lib/com_err'])
 
-buildenv = hostenv.Copy()
+buildenv = hostenv
+
+cross_compiling = 0
+
+if cross_compiling:
+       buildenv = hostenv.Copy()
+       buildenv.BuildDir('build-env','.')
 
 dynenv = hostenv.Copy()
 
@@ -50,5 +56,6 @@ Export('dynconfig')
 SConscript(
                dirs=['param','lib','torture','rpc_server','cldap_server','libcli',
                'nbt_server','client','ldap_server','libnet','nsswitch','web_server',
-               'smbd','dsdb'],
-               exports='hostenv')
+               'smbd','dsdb','heimdal_build','ntptr','kdc','smb_server','ntvfs',
+               'winbind','scripting','auth'],
+               exports='buildenv hostenv')
index b17b8e580bb2ef0d11d7b56d43fb95ffce047f08..298092834b9153d58651b9e08e1067c42a2b15dc 100644 (file)
@@ -1 +1,12 @@
 Import('hostenv')
+
+hostenv.StaticLibrary('auth_sam.c')
+hostenv.StaticLibrary('auth_anonymous.c')
+hostenv.StaticLibrary('auth_winbind.c')
+hostenv.StaticLibrary('auth_domain.c')
+hostenv.StaticLibrary('auth_developer.c')
+hostenv.StaticLibrary('auth_unix.c')
+hostenv.StaticLibrary('pam_errors.c')
+hostenv.StaticLibrary('auth',['auth.c','auth_util.c','auth_sam_reply.c','ntlm_check.c'])
+
+SConscript(dirs=['ntlmssp','kerberos','gensec'],exports='hostenv')
diff --git a/source/auth/gensec/SConscript b/source/auth/gensec/SConscript
new file mode 100644 (file)
index 0000000..1e92dd9
--- /dev/null
@@ -0,0 +1,8 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('gensec',['gensec.c'])
+hostenv.StaticLibrary('gensec_krb5',['gensec_krb5.c'])
+hostenv.StaticLibrary('gensec_gssapi',['gensec_gssapi.c'])
+hostenv.StaticLibrary('gensec_spnego',['spnego.c'])
+hostenv.StaticLibrary('gensec_schannel',['schannel.c','schannel_sign.c'])
+hostenv.StaticLibrary('schanneldb',['schannel_state.c'])
diff --git a/source/auth/kerberos/SConscript b/source/auth/kerberos/SConscript
new file mode 100644 (file)
index 0000000..8272f1c
--- /dev/null
@@ -0,0 +1,6 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('kerberos',
+               ['kerberos.c','clikrb5.c','kerberos_verify.c',
+               'kerberos_util.c','kerberos_pac.c','gssapi_parse.c',
+               'krb5_init_context.c'])
diff --git a/source/auth/ntlmssp/SConscript b/source/auth/ntlmssp/SConscript
new file mode 100644 (file)
index 0000000..1fb21c0
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('gensec_ntlmssp',
+               ['ntlmssp_parse.c','ntlmssp.c','ntlmssp_sign.c','ntlmssp_client.c',
+               'ntlmssp_server.c'])
diff --git a/source/build/scons/asn1.py b/source/build/scons/asn1.py
new file mode 100644 (file)
index 0000000..078ac74
--- /dev/null
@@ -0,0 +1,26 @@
+"""SCons.Tool.asn1
+
+Tool-specific initialization for ASN1
+
+"""
+
+import SCons.Defaults
+import SCons.Scanner.ASN1
+import SCons.Util
+
+asn1_scanner = SCons.Scanner.ASN1.ASN1Scan()
+
+asn1_builder = SCons.Builder.Builder(action='$ASN1COM',
+                                     src_suffix = '.asn1',
+                                     suffix='.c',
+                                     scanner = asn1_scanner)
+
+def generate(env):
+    env['ASN1']          = 'FIXME'
+    env['PROTOCOM']       = '$ASN1 $SOURCE'
+    env['BUILDERS']['ASN1'] = asn1_builder
+
+def exists(env):
+       return env.Detect('FIXME')
+
+
diff --git a/source/build/scons/et.py b/source/build/scons/et.py
new file mode 100644 (file)
index 0000000..cba40af
--- /dev/null
@@ -0,0 +1,26 @@
+"""SCons.Tool.et
+
+Tool-specific initialization for et
+
+"""
+
+import SCons.Defaults
+import SCons.Scanner.ET
+import SCons.Util
+
+et_scanner = SCons.Scanner.ET.ETScan()
+
+et_builder = SCons.Builder.Builder(action='$ETCOM',
+                                     src_suffix = '.et',
+                                     suffix='.c',
+                                     scanner = et_scanner)
+
+def generate(env):
+    env['ET']          = 'FIXME'
+    env['PROTOCOM']       = '$ET $SOURCE'
+    env['BUILDERS']['ET'] = et_builder
+
+def exists(env):
+       return env.Detect('FIXME')
+
+
index cf31cbb1df11ebfb613396b0e869ee48da978024..b975976daa0232d0aaf21dd3539edfaa9e35bc53 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('cldap_server',['cldap_server.c','netlogon.c'])
index 1e07a53ec692e6e715c26049e3d65fe4321a9e5f..40b81e23c85954bcee6b8cf074a8dc856bfaf4a4 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.Program('smbclient', ['client.c'])
index f71d90170905dba1dfa27851f355d94d8d343305..1a643820535c238a892b0900123def48c6054aed 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('ldb_objectguid',['samdb/ldb_modules/objectguid.c'])
 hostenv.StaticLibrary('ldb_samldb',['samdb/ldb_modules/samldb.c'])
 hostenv.StaticLibrary('ldb_samba3sam',['samdb/ldb_modules/samba3sam.c'])
index dc84db5a3ab87686fece11a040668c8722c8f933..97caf4db56e6f9b69f749ff9e42626b1810875ca 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 gtksmb = hostenv.StaticLibrary('gtksmb',
                ['common/gtk-smb.c','common/select.c',
                'common/gtk_events.c','common/credentials.c'])
diff --git a/source/heimdal_build/SConscript b/source/heimdal_build/SConscript
new file mode 100644 (file)
index 0000000..86b571f
--- /dev/null
@@ -0,0 +1,158 @@
+Import('buildenv hostenv')
+
+hostenv.StaticLibrary('heimdal_kdc',
+       ['../kdc/default_config.c','../kdc/kerberos5.c','../kdc/pkinit.c',
+        '../kdc/log.c','../kdc/misc.c','../kdc/524.c','../kdc/kerberos4.c',
+        '../kdc/kaserver.c','../kdc/process.c'])
+
+hostenv.StaticLibrary('heimdal_hdb',
+       ['../heimdal/lib/hdb/db.c','../heimdal/lib/hdb/hdb.c','../heimdal/lib/hdb/ext.c','../heimdal/lib/hdb/keys.c',
+       '../heimdal/lib/hdb/mkey.c','../heimdal/lib/hdb/ndbm.c','../heimdal/lib/hdb/asn1_Event.c',
+       '../heimdal/lib/hdb/asn1_GENERATION.c','../heimdal/lib/hdb/asn1_HDBFlags.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_Aliases.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_Constrained_delegation_acl.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_Lan_Manager_OWF.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_PKINIT_acl.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_PKINIT_certificate.c',
+       '../heimdal/lib/hdb/asn1_HDB_Ext_Password.c',
+       '../heimdal/lib/hdb/asn1_HDB_extension.c',
+       '../heimdal/lib/hdb/asn1_HDB_extensions.c',
+       '../heimdal/lib/hdb/asn1_Key.c',
+       '../heimdal/lib/hdb/asn1_Salt.c',
+       '../heimdal/lib/hdb/asn1_hdb_entry.c',
+       '../heimdal/lib/hdb/hdb_err.c'])
+
+hostenv.StaticLibrary('heimdal_gssapi',
+       ['../heimdal/lib/gssapi/init_sec_context.c','../heimdal/lib/gssapi/inquire_cred.c',
+       '../heimdal/lib/gssapi/release_buffer.c','../heimdal/lib/gssapi/release_cred.c',
+       '../heimdal/lib/gssapi/release_name.c','../heimdal/lib/gssapi/release_oid_set.c',
+       '../heimdal/lib/gssapi/sequence.c','../heimdal/lib/gssapi/test_oid_set_member.c',
+       '../heimdal/lib/gssapi/unwrap.c','../heimdal/lib/gssapi/verify_mic.c','../heimdal/lib/gssapi/wrap.c',
+       '../heimdal/lib/gssapi/address_to_krb5addr.c','../heimdal/lib/gssapi/asn1_ContextFlags.c',
+       '../heimdal/lib/gssapi/asn1_MechType.c','../heimdal/lib/gssapi/asn1_MechTypeList.c',
+       '../heimdal/lib/gssapi/asn1_NegotiationToken.c','../heimdal/lib/gssapi/asn1_NegTokenInit.c',
+       '../heimdal/lib/gssapi/asn1_NegTokenTarg.c','../heimdal/lib/gssapi/8003.c',
+       '../heimdal/lib/gssapi/accept_sec_context.c','../heimdal/lib/gssapi/acquire_cred.c',
+       '../heimdal/lib/gssapi/add_oid_set_member.c','../heimdal/lib/gssapi/arcfour.c',
+       '../heimdal/lib/gssapi/ccache_name.c','../heimdal/lib/gssapi/copy_ccache.c','../heimdal/lib/gssapi/cfx.c',
+       '../heimdal/lib/gssapi/compat.c','../heimdal/lib/gssapi/context_time.c',
+       '../heimdal/lib/gssapi/create_emtpy_oid_set.c','../heimdal/lib/gssapi/decapsulate.c',
+       '../heimdal/lib/gssapi/delete_sec_context.c','../heimdal/lib/gssapi/display_name.c',
+       '../heimdal/lib/gssapi/display_status.c','../heimdal/lib/gssapi/duplicate_name.c',
+       '../heimdal/lib/gssapi/encapsulate.c','../heimdal/lib/gssapi/external.c',
+       '../heimdal/lib/gssapi/get_mic.c','../heimdal/lib/gssapi/import_name.c','../heimdal/lib/gssapi/init.c'])
+
+hostenv.StaticLibrary('heimdal_krb5',
+       ['../heimdal/lib/krb5/acache.c','../heimdal/lib/krb5/add_et_list.c','../heimdal/lib/krb5/addr_families.c',
+       '../heimdal/lib/krb5/appdefault.c','../heimdal/lib/krb5/asn1_glue.c','../heimdal/lib/krb5/auth_context.c',
+       '../heimdal/lib/krb5/build_ap_req.c','../heimdal/lib/krb5/build_auth.c','../heimdal/lib/krb5/cache.c',
+       '../heimdal/lib/krb5/changepw.c','../heimdal/lib/krb5/codec.c','../heimdal/lib/krb5/config_file.c',
+       '../heimdal/lib/krb5/config_file_netinfo.c','../heimdal/lib/krb5/constants.c',
+       '../heimdal/lib/krb5/context.c','../heimdal/lib/krb5/copy_host_realm.c','../heimdal/lib/krb5/crc.c',
+       '../heimdal/lib/krb5/creds.c','../heimdal/lib/krb5/crypto.c','../heimdal/lib/krb5/data.c',
+       '../heimdal/lib/krb5/eai_to_heim_errno.c','../heimdal/lib/krb5/error_string.c',
+       '../heimdal/lib/krb5/expand_hostname.c','../heimdal/lib/krb5/fcache.c',
+       '../heimdal/lib/krb5/free.c','../heimdal/lib/krb5/free_host_realm.c',
+       '../heimdal/lib/krb5/generate_seq_number.c','../heimdal/lib/krb5/generate_subkey.c',
+       '../heimdal/lib/krb5/get_cred.c','../heimdal/lib/krb5/get_default_principal.c',
+       '../heimdal/lib/krb5/get_default_realm.c','../heimdal/lib/krb5/get_for_creds.c',
+       '../heimdal/lib/krb5/get_host_realm.c','../heimdal/lib/krb5/get_in_tkt.c',
+       '../heimdal/lib/krb5/get_in_tkt_with_keytab.c','../heimdal/lib/krb5/get_port.c',
+       '../heimdal/lib/krb5/init_creds.c','../heimdal/lib/krb5/init_creds_pw.c','../heimdal/lib/krb5/kcm.c',
+       '../heimdal/lib/krb5/keyblock.c','../heimdal/lib/krb5/keytab.c','../heimdal/lib/krb5/keytab_any.c',
+       '../heimdal/lib/krb5/keytab_file.c','../heimdal/lib/krb5/keytab_memory.c',
+       '../heimdal/lib/krb5/keytab_keyfile.c','../heimdal/lib/krb5/keytab_krb4.c','../heimdal/lib/krb5/krbhst.c',
+       '../heimdal/lib/krb5/log.c','../heimdal/lib/krb5/mcache.c','../heimdal/lib/krb5/misc.c',
+       '../heimdal/lib/krb5/mk_error.c','../heimdal/lib/krb5/mk_priv.c','../heimdal/lib/krb5/mk_rep.c',
+       '../heimdal/lib/krb5/mk_req.c','../heimdal/lib/krb5/mk_req_ext.c','../heimdal/lib/krb5/mit_glue.c',
+       '../heimdal/lib/krb5/n-fold.c','../heimdal/lib/krb5/padata.c','../heimdal/lib/krb5/pkinit.c',
+       '../heimdal/lib/krb5/principal.c','../heimdal/lib/krb5/rd_cred.c','../heimdal/lib/krb5/rd_error.c',
+       '../heimdal/lib/krb5/rd_priv.c','../heimdal/lib/krb5/rd_rep.c','../heimdal/lib/krb5/rd_req.c',
+       '../heimdal/lib/krb5/replay.c','../heimdal/lib/krb5/send_to_kdc.c',
+       '../heimdal/lib/krb5/set_default_realm.c','../heimdal/lib/krb5/store.c','../heimdal/lib/krb5/store_emem.c',
+       '../heimdal/lib/krb5/store_fd.c','../heimdal/lib/krb5/store_mem.c','../heimdal/lib/krb5/ticket.c',
+       '../heimdal/lib/krb5/time.c','../heimdal/lib/krb5/transited.c','../heimdal/lib/krb5/v4_glue.c',
+       '../heimdal/lib/krb5/version.c','../heimdal/lib/krb5/warn.c','../heimdal/lib/krb5/krb5_err.c',
+       '../heimdal/lib/krb5/heim_err.c','../heimdal/lib/krb5/k524_err.c'])
+
+hostenv.StaticLibrary('heimdal_asn1',
+       ['../heimdal/lib/asn1/der_get.c','../heimdal/lib/asn1/der_put.c','../heimdal/lib/asn1/der_free.c',
+       '../heimdal/lib/asn1/der_length.c','../heimdal/lib/asn1/der_copy.c','../heimdal/lib/asn1/der_cmp.c',
+       '../heimdal/lib/asn1/asn1_AD_IF_RELEVANT.c','../heimdal/lib/asn1/asn1_APOptions.c',
+       '../heimdal/lib/asn1/asn1_AP_REP.c','../heimdal/lib/asn1/asn1_AP_REQ.c','../heimdal/lib/asn1/asn1_AS_REP.c',
+       '../heimdal/lib/asn1/asn1_AS_REQ.c','../heimdal/lib/asn1/asn1_Authenticator.c',
+       '../heimdal/lib/asn1/asn1_AuthorizationData.c','../heimdal/lib/asn1/asn1_CBCParameter.c',
+       '../heimdal/lib/asn1/asn1_CKSUMTYPE.c','../heimdal/lib/asn1/asn1_ChangePasswdDataMS.c',
+       '../heimdal/lib/asn1/asn1_Checksum.c','../heimdal/lib/asn1/asn1_ENCTYPE.c',
+       '../heimdal/lib/asn1/asn1_ETYPE_INFO.c','../heimdal/lib/asn1/asn1_ETYPE_INFO2.c',
+       '../heimdal/lib/asn1/asn1_ETYPE_INFO2_ENTRY.c','../heimdal/lib/asn1/asn1_ETYPE_INFO_ENTRY.c',
+       '../heimdal/lib/asn1/asn1_EncAPRepPart.c','../heimdal/lib/asn1/asn1_EncASRepPart.c',
+       '../heimdal/lib/asn1/asn1_EncKDCRepPart.c','../heimdal/lib/asn1/asn1_EncKrbCredPart.c',
+       '../heimdal/lib/asn1/asn1_EncKrbPrivPart.c','../heimdal/lib/asn1/asn1_EncTGSRepPart.c',
+       '../heimdal/lib/asn1/asn1_EncTicketPart.c','../heimdal/lib/asn1/asn1_EncryptedData.c',
+       '../heimdal/lib/asn1/asn1_EncryptionKey.c','../heimdal/lib/asn1/asn1_EtypeList.c',
+       '../heimdal/lib/asn1/asn1_HostAddress.c','../heimdal/lib/asn1/asn1_HostAddresses.c',
+       '../heimdal/lib/asn1/asn1_KDCOptions.c','../heimdal/lib/asn1/asn1_KDC_REP.c',
+       '../heimdal/lib/asn1/asn1_KDC_REQ.c','../heimdal/lib/asn1/asn1_KDC_REQ_BODY.c',
+       '../heimdal/lib/asn1/asn1_KRB_CRED.c','../heimdal/lib/asn1/asn1_KRB_ERROR.c',
+       '../heimdal/lib/asn1/asn1_KRB_PRIV.c','../heimdal/lib/asn1/asn1_KerberosString.c',
+       '../heimdal/lib/asn1/asn1_KerberosTime.c','../heimdal/lib/asn1/asn1_KrbCredInfo.c',
+       '../heimdal/lib/asn1/asn1_LR_TYPE.c','../heimdal/lib/asn1/asn1_LastReq.c',
+       '../heimdal/lib/asn1/asn1_MESSAGE_TYPE.c','../heimdal/lib/asn1/asn1_METHOD_DATA.c',
+       '../heimdal/lib/asn1/asn1_NAME_TYPE.c','../heimdal/lib/asn1/asn1_PADATA_TYPE.c',
+       '../heimdal/lib/asn1/asn1_PA_DATA.c','../heimdal/lib/asn1/asn1_PA_ENC_TS_ENC.c',
+       '../heimdal/lib/asn1/asn1_PA_PAC_REQUEST.c','../heimdal/lib/asn1/asn1_Principal.c',
+       '../heimdal/lib/asn1/asn1_PrincipalName.c','../heimdal/lib/asn1/asn1_RC2CBCParameter.c',
+       '../heimdal/lib/asn1/asn1_Realm.c','../heimdal/lib/asn1/asn1_TGS_REP.c',
+       '../heimdal/lib/asn1/asn1_TGS_REQ.c','../heimdal/lib/asn1/asn1_Ticket.c',
+       '../heimdal/lib/asn1/asn1_TicketFlags.c','../heimdal/lib/asn1/asn1_TransitedEncoding.c',
+       '../heimdal/lib/asn1/asn1_err.c','../heimdal/lib/asn1/asn1_krb5int32.c',
+       '../heimdal/lib/asn1/asn1_krb5uint32.c'])
+
+hostenv.StaticLibrary('heimdal_des',
+       ['../heimdal/lib/des/aes.c','../heimdal/lib/des/des.c','../heimdal/lib/des/md4.c','../heimdal/lib/des/md5.c',
+       '../heimdal/lib/des/rc2.c','../heimdal/lib/des/rc4.c','../heimdal/lib/des/rijndael-alg-fst.c',
+       '../heimdal/lib/des/rnd_keys.c','../heimdal/lib/des/sha.c','../heimdal/lib/des/ui.c'])
+
+hostenv.StaticLibrary('roken_gai_strerror', ['../heimdal/lib/roken/gai_strerror.c'])
+hostenv.StaticLibrary('roken_inet_aton', ['../heimdal/lib/roken/inet_aton.c'])
+hostenv.StaticLibrary('roken_addrinfo', 
+       ['../heimdal/lib/roken/getaddrinfo.c','../heimdal/lib/roken/freeaddrinfo.c',
+        '../heimdal/lib/roken/getipnodebyaddr.c','../heimdal/lib/roken/getipnodebyname.c',
+        '../heimdal/lib/roken/freehostent.c', '../heimdal/lib/roken/copyhostent.c',
+        '../heimdal/lib/roken/hostent_find_fqdn.c'])
+
+hostenv.StaticLibrary('roken',
+       ['../heimdal/lib/roken/base64.c','../heimdal/lib/roken/bswap.c','../heimdal/lib/roken/get_window_size.c',
+       '../heimdal/lib/roken/getprogname.c','../heimdal/lib/roken/h_errno.c','../heimdal/lib/roken/issuid.c',
+       '../heimdal/lib/roken/net_read.c','../heimdal/lib/roken/net_write.c','../heimdal/lib/roken/parse_time.c',
+       '../heimdal/lib/roken/parse_units.c','../heimdal/lib/roken/resolve.c',
+       '../heimdal/lib/roken/roken_gethostby.c','../heimdal/lib/roken/signal.c','../heimdal/lib/roken/vis.c',
+       '../heimdal/lib/roken/strlwr.c','../heimdal/lib/roken/strsep_copy.c','../heimdal/lib/roken/strupr.c',
+       '../heimdal/lib/roken/strpool.c','heimdal_build/replace.c'])
+
+hostenv.StaticLibrary('heimdal_vers',['../heimdal/lib/version/print_version.c'])
+hostenv.StaticLibrary('heimdal_glue',['heimdal_build/glue.c'])
+hostenv.StaticLibrary('heimdal_com_err',
+       ['../heimdal/lib/com_err/com_err.c','../heimdal/lib/com_err/error.c'])
+
+buildenv.Program('asn1_compile',
+       ['../heimdal/lib/asn1/main.c','../heimdal/lib/asn1/gen.c',
+       '../heimdal/lib/asn1/gen_copy.c','../heimdal/lib/asn1/gen_decode.c',
+       '../heimdal/lib/asn1/gen_encode.c','../heimdal/lib/asn1/gen_free.c',
+       '../heimdal/lib/asn1/gen_glue.c','../heimdal/lib/asn1/gen_length.c',
+       '../heimdal/lib/asn1/hash.c','../heimdal/lib/asn1/lex.c',
+       '../heimdal/lib/asn1/parse.c','../heimdal/lib/roken/emalloc.c',
+       '../heimdal/lib/roken/getarg.c','../heimdal/lib/roken/setprogname.c',
+       '../heimdal/lib/roken/strupr.c','../heimdal/lib/roken/getprogname.c',
+       '../heimdal/lib/roken/get_window_size.c','../heimdal/lib/roken/estrdup.c',
+       '../heimdal/lib/roken/ecalloc.c','../heimdal/lib/asn1/symbol.c',
+       'heimdal_build/replace.c','../heimdal/lib/vers/print_version.c',
+       'lib/replace/snprintf.c','lib/replace/replace.c'])
+
+buildenv.Program('compile_et',
+       ['../heimdal/lib/vers/print_version.c','../heimdal/lib/com_err/lex.c','../heimdal/lib/com_err/parse.c',
+       '../heimdal/lib/com_err/compile_et.c','../heimdal/lib/roken/getarg.c',
+       '../heimdal/lib/roken/get_window_size.c','../heimdal/lib/roken/getprogname.c',
+       '../heimdal/lib/roken/strupr.c','../heimdal/lib/roken/setprogname.c','heimdal_build/replace.c',
+       'lib/replace/snprintf.c','lib/replace/replace.c'])
diff --git a/source/kdc/SConscript b/source/kdc/SConscript
new file mode 100644 (file)
index 0000000..98f5e3a
--- /dev/null
@@ -0,0 +1,2 @@
+Import('hostenv')
+hostenv.StaticLibrary('kdc',['kdc.c','pac-glue.c','hdb-ldb.c'])
index d6b021c3ae14684cc08fcad0536344916922ec85..97210cc1e0bf7754bd6d0a9fe575e15d3a90ac08 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('ldap_server', 
                ['ldap_server.c','ldap_backend.c','ldap_bind.c','ldap_rootdse.c',
                 'ldap_simple_ldb.c','ldap_hacked_ldb.c'])
index 516537cac0e734a71992957d905c8b99fb147516..b3d949d12ebfa7e14feeac0e74677215fe68b023 100644 (file)
@@ -1,8 +1,8 @@
+Import('hostenv')
 #            tastes like -*- python -*-
 
-Import('hostenv')
 basic = hostenv.StaticLibrary('basic', 
-       ['version.c', 'xfile.c', 'debug.c', 'fault.c', 'pidfile.c',
+       ['version.c', 'xfile.c', 'debug.c', 'fault.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', 
@@ -20,6 +20,6 @@ hostenv.StaticLibrary('gencache',['gencache.c'])
 hostenv.StaticLibrary('pidfile',['pidfile.c'])
 hostenv.StaticLibrary('unix_privs',['unix_privs.c'])
 
-SConscript(dirs=['replace','tdb','popt','cmdline','talloc','registry','charset',
-                  'ldb','tls','samba3','socket','socket_wrapper','messaging'],
+SConscript(dirs=['replace','tdb','popt','cmdline','talloc','registry','charset', 'ldb','tls','samba3','socket','socket_wrapper','messaging','com','events',
+                  'appweb'],
                   exports='hostenv')
diff --git a/source/lib/appweb/SConscript b/source/lib/appweb/SConscript
new file mode 100644 (file)
index 0000000..2c8238b
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('mpr',['mpr/miniMpr.c','mpr/var.c'])
+hostenv.StaticLibrary('ejs',['ejs/ejsLib.c','ejs/ejsLex.c','ejs/ejsParser.c','ejs/ejsProcs.c'])
+hostenv.StaticLibrary('esp',['esp/esp.c','esp/espProcs.c'])
diff --git a/source/lib/appweb/ejs/config.mk b/source/lib/appweb/ejs/config.mk
deleted file mode 100644 (file)
index f2c0e62..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#######################
-# Start SUBSYSTEM EJS
-[SUBSYSTEM::EJS]
-ADD_OBJ_FILES = \
-               lib/ejs/ejsLib.o  \
-               lib/ejs/ejsLex.o \
-               lib/ejs/ejsParser.o \
-               lib/ejs/ejsProcs.o \
-               lib/ejs/miniMpr.o \
-               lib/ejs/var.o
-NOPROTO=YES
-# End SUBSYSTEM EJS
-#######################
index 7d9044d547c1168771c2736eebc15d24d90d555f..53e5db44bb5d4bf85f6e7f72adeb55bf2040147d 100644 (file)
@@ -1,8 +1,8 @@
+Import('hostenv')
 SConscript('../../build/scons/iconv.py')
 #            tastes like -*- python -*-
-Import('hostenv')
 
-#conf = Configure(hostenv, custom_tests = { 'CheckIconv' : CheckIconv })
+#conf = Configure( custom_tests = { 'CheckIconv' : CheckIconv })
 #(have_iconv,iconv) = conf.CheckIconv()
 #conf.Finish()
 
index 724dc07821efb39ce8298e03d43af701871aefaa..a99a2b48929950db0e2bbf8442e4ea150a38bdfd 100644 (file)
@@ -1,6 +1,6 @@
+Import('hostenv')
 #            tastes like -*- python -*-
 
-Import('hostenv')
 Import('basic param')
 popt_common = hostenv.StaticLibrary('popt_common',['popt_common.c',basic,param])
 Export('popt_common')
diff --git a/source/lib/com/SConscript b/source/lib/com/SConscript
new file mode 100644 (file)
index 0000000..44708bd
--- /dev/null
@@ -0,0 +1,4 @@
+Import('hostenv')
+hostenv.StaticLibrary('com', [ 'tables.c','rot.c','main.c'])
+hostenv.StaticLibrary('dcom', [ 'dcom/tables.c','dcom/main.c'])
+hostenv.StaticLibrary('com_simple', ['classes/simple.c'])
diff --git a/source/lib/events/SConscript b/source/lib/events/SConscript
new file mode 100644 (file)
index 0000000..e1ca866
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('events',['events.c','events_standard.c'])
index 4c62ffb82ee8414a3772b9172f678e37ec7b3e56..1d1ee5859bb2c92e9010ea1b0eace00e184979f1 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('messaging','messaging.c')
index fd13edc42f7f978bfcb9e7afbb8360d2919d9212..78496e7e1af0a33e01ecbd77bab9a872ba7f22cf 100644 (file)
@@ -1,8 +1,7 @@
-#            tastes like -*- python -*-
-
 Import('hostenv')
+#            tastes like -*- python -*-
 
-conf = Configure(hostenv)
+conf = hostenv.Configure()
 conf.env['HAVE_EXTERNAL_POPT'] = conf.CheckLibWithHeader('popt', 'popt.h', 'c', 'poptGetArgs(NULL);')
 conf.Finish()
 
index 4ea430110591ca525b3ee215712249b307983a19..65aeb5b17a256fdd2cdb79246c35e24e2b2585f0 100644 (file)
@@ -1,6 +1,6 @@
+Import('hostenv')
 #            tastes like -*- python -*-
 
-Import('hostenv')
 Import('talloc basic popt_common popt param')
 registry = hostenv.StaticLibrary('registry',
                        [basic,talloc,'common/reg_interface.c','common/reg_util.c'])
index f8efcc55b9420c2d298fc49314daf092b2988b3d..b63b544f8a5e53aaa1d2be5bf9c24b92d663de66 100644 (file)
@@ -1,6 +1,6 @@
 Import('hostenv')
-
 conf = Configure(hostenv)
+
 #FIXME: conf.CheckBrokenInetNtoa() 
 for f in ['strtoull','__strtoull','strtouq','strtoll','__strtoll','strtoq',
                  'seteuid','setresuid','setegid','setresgid']:
index 7fc6e7ce37533d43c9de05a4815e62edeffe6847..ba1f76b1a76d13d3e3ee1868d115cb2ed52dc78c 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('samba3',
                ['smbpasswd.c','tdbsam.c','policy.c','idmap.c','winsdb.c','samba3.c',
                'group.c','registry.c','secrets.c','share_info.c'])
index 4d81cd56968078081cb678c68c32d3ce0b930337..db449592c219d1c3785e252b5cea812d2a900af5 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('socket_ipv4.c')
 hostenv.StaticLibrary('socket_ipv6.c')
 hostenv.StaticLibrary('socket_unix.c')
index fe5844d6da624b258201be3f793e94494ed03512..6ec9c338d368025e19d5f8735fe6a9f6356a05e7 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('socket_wrapper',['socket_wrapper.c'])
index 37079c41568b3bad4544858d485b1414e5e41005..ad88262f1dddfc4d68f4c4933d3a07d369881683 100644 (file)
@@ -1,5 +1,5 @@
+Import('hostenv')
 #            tastes like -*- python -*-
 
-Import('hostenv')
 talloc = hostenv.StaticLibrary('talloc',['talloc.c'])
 Export('talloc')
index 88f150b9cf73988e2f02dd12fe936918f1b026cd..6abcdff8218a4d09234e2420e844004c1eff6780 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('tls', ['tls.c', 'tlscert.c'])
index 4992197166772cc006b5ebb198dd99437a57f618..d073f2e5dbd6f1ab69339b42d0ab37e07eaa5c6e 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('cli_utils',
                ['util/asn1.c', 'util/doserr.c','util/errormap.c','util/clierror.c',
                'util/nterr.c','util/smbdes.c'])
@@ -38,3 +37,5 @@ hostenv.StaticLibrary('cli_raw',
                'raw/clioplock.c','raw/rawnegotiate.c','raw/rawfsinfo.c',
                'raw/rawfileinfo.c','raw/rawnotify.c','raw/rawioctl.c',
                'raw/rawacl.c','raw/rawdate.c','raw/rawlpq.c'])
+
+SConscript(dirs=['auth','ldap','security'],exports='hostenv')
diff --git a/source/libcli/auth/SConscript b/source/libcli/auth/SConscript
new file mode 100644 (file)
index 0000000..d527faa
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('cli_auth',['credentials.c','session.c','smbencrypt.c'])
diff --git a/source/libcli/ldap/SConscript b/source/libcli/ldap/SConscript
new file mode 100644 (file)
index 0000000..eef9a9f
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('cli_ldap',
+               ['ldap.c','ldap_client.c','ldap_bind.c','ldap_msg.c','ldap_ndr.c',
+               'ldap_ildap.c'])
diff --git a/source/libcli/security/SConscript b/source/libcli/security/SConscript
new file mode 100644 (file)
index 0000000..e81051e
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('cli_security',
+               ['security_token.c','security_descriptor.c','dom_sid.c',
+                'access_check.c','privilege.c'])
index 5c898ccab818c5dad916ae1207914ce726039c72..9c9793e731c97e6fa229e1085d92d7e5238b9441 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('net',
                ['libnet.c','libnet_passwd.c','libnet_time.c','libnet_rpc.c',
                 'libnet_join.c','libnet_vampire.c','libnet_samdump.c',
index da3f4af4c473b0cb97c695413d4db617b385d196..be33ad44ad2901dfedb76988f9b2e36d1eff4029 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('ndr_base', 
                ['ndr/ndr.c','ndr/ndr_basic.c','ndr/ndr_string.c','ndr/ndr_obfuscate.c',
                'ndr/ndr_misc.c'])
index 153b223dae4d8f8766ab2f88d3b49f579d072965..d68c89db5825e1cb7930160442d9df55c85e4d45 100644 (file)
@@ -1,6 +1,5 @@
 Import('hostenv')
 
-
 hostenv.StaticLibrary('winsdb',['wins/winsdb.c'])
 hostenv.StaticLibrary('nbtd_wins',['wins/winsserver.c','wins/winsclient.c','wins/winswack.c'])
 hostenv.StaticLibrary('nbtd_dgram',['dgram/request.c','dgram/netlogon.c','dgram/ntlogon.c','dgram/browse.c'])
index 5cf29c036eda363673307fedb92005b77d858c69..47ee2c019a095d842399ab6faa65b2916820d035 100644 (file)
@@ -1,3 +1,2 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('cli_winbind',['wb_common.c'])
diff --git a/source/ntptr/SConscript b/source/ntptr/SConscript
new file mode 100644 (file)
index 0000000..9660bd5
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+hostenv.StaticLibrary('ntptr_simple_ldb',
+               ['simple_ldb/ntptr_simple_ldb.c'])
+hostenv.StaticLibrary('ntptr',
+               ['ntptr_base.c','ntptr_interface.c'])
diff --git a/source/ntvfs/SConscript b/source/ntvfs/SConscript
new file mode 100644 (file)
index 0000000..16047eb
--- /dev/null
@@ -0,0 +1,11 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('ntvfs_cifs',['cifs/vfs_cifs.c'])
+hostenv.StaticLibrary('ntvfs_simple',['simple/vfs_simple.c','simple/svfs_util.c'])
+hostenv.StaticLibrary('ntvfs_print',['print/vfs_print.c'])
+hostenv.StaticLibrary('ntvfs_ipc',['ipc/vfs_ipc.c','ipc/ipc_rap.c','ipc/rap_server.c'])
+hostenv.StaticLibrary('ntvfs_nbench',['nbench/vfs_nbench.c'])
+hostenv.StaticLibrary('ntvfs_common',['common/brlock.c','common/opendb.c','common/sidmap.c'])
+hostenv.StaticLibrary('ntvfs',['ntvfs_base.c','ntvfs_generic.c','ntvfs_interface.c','ntvfs_util.c'])
+
+SConscript(dirs=['unixuid','posix'],exports='hostenv')
diff --git a/source/ntvfs/posix/SConscript b/source/ntvfs/posix/SConscript
new file mode 100644 (file)
index 0000000..a781fe2
--- /dev/null
@@ -0,0 +1,10 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('ntvfs_posix',
+               ['vfs_posix.c', 'pvfs_util.c', 'pvfs_search.c', 'pvfs_dirlist.c',
+               'pvfs_fileinfo.c', 'pvfs_unlink.c', 'pvfs_mkdir.c', 'pvfs_open.c',
+               'pvfs_read.c', 'pvfs_flush.c', 'pvfs_write.c', 'pvfs_fsinfo.c',
+               'pvfs_qfileinfo.c', 'pvfs_setfileinfo.c', 'pvfs_rename.c',
+               'pvfs_resolve.c', 'pvfs_shortname.c', 'pvfs_lock.c', 'pvfs_wait.c',
+               'pvfs_seek.c', 'pvfs_ioctl.c', 'pvfs_xattr.c', 'pvfs_streams.c',
+               'pvfs_acl.c', 'xattr_system.c', 'xattr_tdb.c'])
diff --git a/source/ntvfs/unixuid/SConscript b/source/ntvfs/unixuid/SConscript
new file mode 100644 (file)
index 0000000..7e1b304
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('ntvfs_unixuid',['vfs_unixuid.c'])
index 15213a8a4d338753c2bb3bda816bd96b630617a8..a959351e906a123d1f7793f4df120e4d8c28ac01 100644 (file)
@@ -1,8 +1,8 @@
+Import('hostenv')
 #            tastes like -*- python -*-
 
-Import('hostenv')
 Import('dynconfig')
-param = hostenv.StaticLibrary('loadparm',['loadparm.c','params.c',dynconfig])
+param = StaticLibrary('loadparm',['loadparm.c','params.c',dynconfig])
 Export('param')
-generic = hostenv.StaticLibrary('generic',['generic.c'])
+generic = StaticLibrary('generic',['generic.c'])
 Export('generic')
diff --git a/source/scripting/SConscript b/source/scripting/SConscript
new file mode 100644 (file)
index 0000000..f32e93a
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+
+SConscript(dirs=['ejs'],exports='hostenv')
diff --git a/source/scripting/ejs/SConscript b/source/scripting/ejs/SConscript
new file mode 100644 (file)
index 0000000..5ba45d8
--- /dev/null
@@ -0,0 +1,12 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('ejsrpc',['ejsrpc.c'])
+hostenv.StaticLibrary('ejs_smbcalls',
+               ['smbcalls.c','smbcalls_config.c','smbcalls_ldb.c',
+                'smbcalls_nbt.c','smbcalls_cli.c','smbcalls_rpc.c',
+                'smbcalls_auth.c','smbcalls_options.c','smbcalls_nss.c',
+                'smbcalls_string.c','smbcalls_data.c','smbcalls_rand.c',
+                'smbcalls_sys.c','smbcalls_creds.c','smbcalls_samba3.c',
+                'smbcalls_param.c','mprutil.c'])
+
+hostenv.Program('smbscript',['smbscript.c'])
diff --git a/source/smb_server/SConscript b/source/smb_server/SConscript
new file mode 100644 (file)
index 0000000..bedf4df
--- /dev/null
@@ -0,0 +1,5 @@
+Import('hostenv')
+hostenv.StaticLibrary('smb_server', 
+               ['smb_server.c','conn.c','negprot.c','nttrans.c','session.c',
+                'reply.c','request.c','search.c','service.c','sesssetup.c',
+                'srvtime.c','trans2.c','signing.c','management.c'])
index 1e11365e3f0a964d54d53c66f8f7a575e2fadaf0..6d939e874d7d81ad8a356a5b9b9f8400200c7eed 100644 (file)
@@ -1,5 +1,4 @@
 Import('hostenv')
-
 hostenv.StaticLibrary('torture_basic',
        ['basic/scanner.c','basic/utable.c','basic/charset.c',
         'basic/mangle_test.c','basic/denytest.c','basic/aliases.c',
diff --git a/source/utils/SConscript b/source/utils/SConscript
new file mode 100644 (file)
index 0000000..67b5dad
--- /dev/null
@@ -0,0 +1,8 @@
+Import('hostenv')
+
+hostenv.Program('ndrdump', ['utils/ndrdump.c'])
+hostenv.Program('ntlm_auth',['utils/ntlm_auth.c'])
+hostenv.Program('getntacl',['utils/getntacl.c'])
+hostenv.Program('setntacl',['utils/setntacl.c'])
+hostenv.Program('setnttoken',['utils/setnttoken.c'])
+hostenv.Program('nmblookup',['utils/nmblookup.c'])
diff --git a/source/winbind/SConscript b/source/winbind/SConscript
new file mode 100644 (file)
index 0000000..c3855a3
--- /dev/null
@@ -0,0 +1,3 @@
+Import('hostenv')
+
+hostenv.StaticLibrary('winbind',['wb_server.c'])