summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s4-smbd: initialise process models in smbtorture before useAndrew Tridgell2010-10-302-5/+15
| | | | | | | the spoolss notify test needs to setup the process models before use Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 30 13:32:09 UTC 2010 on sn-devel-104
* s4-smbd: leave the single process model as internalAndrew Tridgell2010-10-301-1/+1
| | | | | This helps with the static smbtorture for samba3, and the spoolss tests which start a server
* waf: fixed building of non-shared binaries that contain modulesAndrew Tridgell2010-10-301-0/+19
| | | | we need to incorporate the module objects too
* s4-heimdal: lex_err_message() should not be staticAndrew Tridgell2010-10-301-2/+2
|
* s4-waf: added a lexyacc.sh script that manually rebuilds the heimdal parsersAndrew Tridgell2010-10-301-0/+82
| | | | | we so rarely need to rebuild these that it is simplest to just run lexyacc.sh when we import a new heimdal release
* s4-test: don't override modules dirAndrew Tridgell2010-10-302-2/+0
| | | | it is set correctly during the build
* waf: get rid of target aliases in wafsambaAndrew Tridgell2010-10-302-30/+1
| | | | these aliases are no longer needed, and can cause a lot of confusion
* s4-build: removed some unnecessary dependenciesAndrew Tridgell2010-10-3010-13/+13
| | | | based on running waf --symbol-check
* s4-ndr: make ndr-table a subsystemAndrew Tridgell2010-10-301-2/+1
| | | | | | its already part of the ndr-samba4 library Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-cmdline: make cmdline-credentials a private libraryAndrew Tridgell2010-10-303-8/+8
|
* s4-dns: make the dns update task an external moduleAndrew Tridgell2010-10-301-5/+6
| | | | this simplifies some dependencies
* s4-cluster: make cluster a private shared libAndrew Tridgell2010-10-302-10/+11
|
* s4-replace: make libreplace a private shared lib in s4Andrew Tridgell2010-10-301-1/+1
|
* s4-tdb: make tdb-wrap into a private libraryAndrew Tridgell2010-10-304-9/+10
| | | | this prevents double linking of the tdb wrap code
* s4-auth: make KERBEROS subsystem into authkrb5 private libraryAndrew Tridgell2010-10-304-11/+12
| | | | | | this fixes some double linking. The name 'KERBEROS' was also a bit confusing, as it sounded like a base kerberos library, when it is in fact part of auth
* s4-credentials: make a private library from CREDENTIALS subsystemAndrew Tridgell2010-10-301-8/+9
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-ldb: add explicit depenencies on ldb library in ldb modulesAndrew Tridgell2010-10-301-2/+10
| | | | | | ldb modules call module functions from the main ldb library Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-ldbwrap: split ldb-wrap out from the LDBSAMBA subsystemAndrew Tridgell2010-10-305-12/+23
| | | | | | | ldb-wrap and the ldif-handlers are not really related, and this allows us to remove another dependency loop Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* zlib: use the real library name 'z' instead of ZLIBAndrew Tridgell2010-10-303-11/+7
| | | | | using subsystem aliases has a lot of potential for confusion. Better to use the real name of the library.
* s4-rpc: split the dcesrv reply code out of dcerpc_serverAndrew Tridgell2010-10-307-175/+264
| | | | | | | this allows us to remove a dependency on the dcerpc_server from code that uses rpc forwarding Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-modules: remove LD_SAMBA_MODULE_PATHAndrew Tridgell2010-10-302-3/+2
| | | | | | | this isn't needed now that we automatically get the module path right in our build and install trees Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-torture: simplify the depenencies for TORTURE_DRSAndrew Tridgell2010-10-301-1/+1
| | | | | | it doesn't need to depend on the kitchen sink Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-smbd: make our process models into real modulesAndrew Tridgell2010-10-301-39/+46
| | | | | | | this simplifies some of the dependencies between bin/samba and the various services, making it easier to get a clean depenency tree Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-smbd: don't initialise process models more than onceAndrew Tridgell2010-10-3018-50/+55
| | | | | | | | | this also removes the event_context parameter from process model initialisation. It isn't needed, and is confusing when a process model init can be called from more than one place, possibly with different event contexts. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: save the samba_deps_extendedAndrew Tridgell2010-10-301-1/+1
| | | | this is needed for the symbols.py extension
* waf: give a better error on a bad grouping libraryAndrew Tridgell2010-10-301-0/+1
| | | | | | give a clear error on an unknown dependency in a grouping library Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: cope with subsystems with no static modulesAndrew Tridgell2010-10-301-4/+6
| | | | | | | we still need the STATIC_xx_MODULES define when there are no static modules. It contains just the sentinal. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: don't auto-depend on subsystemsAndrew Tridgell2010-10-301-7/+0
| | | | | | | | | | | | this is part of an effort to reduce the amount of automatic dependency munging we do. When working on the correct dependency tree for Samba it is easier to add the right dependencies in the wscript files than rely on them being added by the waf rules. This change removes the automatic dependency of modules on their subsystem. Many modules don't actually need this dependency anyway, so it is better to add it where they are needed (for example, for ldb modules) Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: added --symbol-check optionAndrew Tridgell2010-10-303-47/+127
| | | | | | | | | | | | | this adds checking of the symbols in all our object files, libraries and syslibs. It will form the basis in future for a lot more checks, but for now it just checks basic rules like not allowing us to use symbols that are in system libs. Currently this is enabled only if you use the --symbol-check option, (or use make with SYMBOLCHECK=1) but I intend to make this always enabled once it has had more testing. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: build all libraries after all object filesAndrew Tridgell2010-10-302-9/+24
| | | | | | this makes it easier to perform symbol checking before the link stage. The two new build groups symbolcheck and syslibcheck will be used by the symbols.py extension
* waf: use Utils.WafError() instead of raising an AssertionErrorAndrew Tridgell2010-10-301-2/+1
| | | | this produces clearer output on errors
* waf: cope with rules with no inputsAndrew Tridgell2010-10-301-0/+3
| | | | | | | when we display a rule with no inputs, just call the original display function Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: separate out get_tgt_list()Andrew Tridgell2010-10-302-12/+20
| | | | | | | this is a useful function for the new symbols code, so separate it out of samba_deps.py Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: display the paths in library loopsAndrew Tridgell2010-10-301-0/+21
| | | | | | | when we detect a library loop, try to display the paths between the two libraries. This should make it easier to fix. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: added env.DEVELOPER_MODE flagAndrew Tridgell2010-10-302-0/+309
| | | | | | | this makes it easier to add project rules that are only run in developer mode Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: added suncc_wrapAndrew Tridgell2010-10-301-1/+16
| | | | | | this should solve a problem with creating alias modules with Sun CC. Thanks to Matthieu for the idea, and Thomas for the waf code
* s4-kdc: create a 'pac' private grouping libraryAndrew Tridgell2010-10-301-0/+6
| | | | | | | this removes the final case where we have an object file linked into two libraries Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-heimdal: removed the use of signal.c from rokenAndrew Tridgell2010-10-301-1/+0
| | | | | | we don't need to replace signal() Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-heimdal: fixed the use of error_message() in heimdalAndrew Tridgell2010-10-3012-47/+49
| | | | | | | | the lex code in heimdal had a function error_message() which conflicts with a function from the com_err library. This replaces it with lex_err_message() Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* replace: create a private replace-test libraryAndrew Tridgell2010-10-303-7/+11
| | | | used by replace_testuite and smbtorture
* s4-ldb: create a private library ldb-cmdlineAndrew Tridgell2010-10-302-6/+7
| | | | this prevents duplicate linking of the cmdline support code
* talloc: Fix manual pages in standalone build.Jelmer Vernooij2010-10-301-2/+1
|
* Fix bug #7700 - Improvement of return code of smbclientJeremy Allison2010-10-2911-136/+229
| | | | | | | | | | Based on an initial patch from H Hasegawa <hasegawa.hiroyuki@fujixerox.co.jp>. Convert cli_list and associated functions to take calls that return NTSTATUS. Jeremy. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Fri Oct 29 19:40:16 UTC 2010 on sn-devel-104
* s4:torture/rpc/samr.c - fix NTTIME warnings by castsMatthias Dieter Wallnöfer2010-10-291-13/+16
| | | | | | | | And also the format specifier is wrong since NTTIME is "uint64_t" and therefore unsigned. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Oct 29 10:36:46 UTC 2010 on sn-devel-104
* s4:torture/rpc/samr.c - test the "ReplicaSourceNodeName" only against s3Matthias Dieter Wallnöfer2010-10-291-2/+4
| | | | AD handles this differently (see MS-SAMR 2.2.4.1)
* s4:samr RPC server - fix trailing whitespacesMatthias Dieter Wallnöfer2010-10-293-268/+268
|
* s4:samr RPC server - fix indentation of function parametersMatthias Dieter Wallnöfer2010-10-291-29/+30
|
* s4:samr RPC server - DomainGeneralInformation - never return NULL on the oem ↵Matthias Dieter Wallnöfer2010-10-291-2/+6
| | | | | | | name As far as I can tell Windows SAMR never returns NULL on unknown values in this call.
* s4:samr RPC server - provide the right "ReplicaSourceNodeName"Matthias Dieter Wallnöfer2010-10-291-12/+16
| | | | | It's the content of the "domainReplica" attribute if it exists and has only a meaning on interim/mixed domain function levels (with NT4 dcs).
* s4:samr RPC server - remove wrong implementation of ReplicaSourceNodeNameMatthias Dieter Wallnöfer2010-10-292-42/+7
| | | | This should represent a replication partner - never the DC iself