summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* build: put links for libs in the right directoryAndrew Tridgell2011-02-181-1/+1
| | | | | | | | | | when a library is declared as libdir/libname, still put the symlink in bin/shared Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Fri Feb 18 06:03:57 CET 2011 on sn-devel-104
* s4-util: removed the valgrind_strlen() routineAndrew Tridgell2011-02-182-18/+0
| | | | | | this was for a bug in valgrind from 7 years ago. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* libutil: make waf rules usable by s3 waf buildAndrew Tridgell2011-02-181-38/+39
| | | | | | | we need samba-util to be s4 only for now, because of the debug system differences Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: improved error message for bad paths in SAMBA_LIBRARY()Andrew Tridgell2011-02-181-1/+7
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: support building libraries with a directory prefixAndrew Tridgell2011-02-183-4/+13
| | | | | | | SAMBA_LIBRARY('libsmb/smbclient') can now be built, which distinguishes it from the binary 'smbclient' Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s3-waf: fixed the include paths for samba public librariesAndrew Tridgell2011-02-181-4/+8
| | | | | | | | | | | this fixes the extra global includes for the s3 waf build to be conditional on whether talloc, tevent and tdb are system libraries or not. This fixes a problem where in-tree includes could be used with system libraries Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* charset: allow s3 waf build to use lib/util/charsetAndrew Tridgell2011-02-181-5/+6
| | | | | | | the only conflict is with 'CHARSET' itself, which now builds conditionally on _SAMBA_BUILD_==4 Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: added SAMBA3_*() build rules to samba3.pyAndrew Tridgell2011-02-181-2/+72
| | | | | | these provide samba build rule wrappers for Samba3 specific subsystems Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: give a more sensible error on symlink_bin with missing directoryAndrew Tridgell2011-02-181-0/+2
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* lib/util/charset use get_dyn_CODEPAGEDIR(), which is in commonAndrew Bartlett2011-02-181-2/+2
| | | | | | This is provided by the s3 and s4 dynconfig implementations. Andrew Bartlett
* lib/util/charset split codepoints.c into it's own subsystemAndrew Bartlett2011-02-181-3/+6
|
* lib/util/charset use a path to dynconfig.h that works in s3 and s4Andrew Bartlett2011-02-181-1/+1
|
* lib/util/charset add functions isupper_m and islower_mAndrew Bartlett2011-02-182-0/+19
|
* s4-auth: rename 'auth' subsystem to 'auth4'Andrew Tridgell2011-02-1810-34/+34
| | | | | | | | this prevents conflicts with the s3 auth modules. The auth modules in samba3 may appear in production smb.conf files, so it is preferable to rename the s4 modules for minimal disruption. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: remember the flags used for undefined variable errorsAndrew Tridgell2011-02-181-2/+2
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s3build: added NMBDSOCKETDIR to dynconfigAndrew Tridgell2011-02-183-1/+5
| | | | | | this is needed for the s3 top level build Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-dsdb: operational module does not need auth any moreAndrew Tridgell2011-02-182-3/+1
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s3-includes: force _SAMBA_BUILD_=3 in source3 includes.hAndrew Tridgell2011-02-181-0/+5
| | | | | | this allows a common set of cflags for a top level combined build Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* uid-wrapper: handle uwrap_enabled() as a macroAndrew Tridgell2011-02-181-0/+2
| | | | | | | some s3 code defines uwrap_enabled() as a macro. Detect this, and don't redeclare the functions Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: fixed passing of includes= for modulesAndrew Tridgell2011-02-181-0/+1
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: added subdir option for module buildingAndrew Tridgell2011-02-181-0/+3
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: added allow_undefined_symbols options for libraries and modulesAndrew Tridgell2011-02-182-2/+10
| | | | | | | | the s4 build uses linker flags to disallow undefined symbols in libraries. To accomodate s3 libraries in the top level build we need to be able to disable this on a per-library basis. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* build: make ADD_LDFLAGS() returns the flags that were addedAndrew Tridgell2011-02-181-1/+3
| | | | | | | this will be used by the s3 top level build to work out how to undo the effects of -Wl,-no-undefined Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: library_flags() doesn't only operate on conf objectsAndrew Tridgell2011-02-181-7/+8
| | | | | | use a better name for the first argument Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s3-build: allow waf build of s3 IDL files from any top directoryAndrew Tridgell2011-02-181-3/+6
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* waf: added subdir= option in SAMBA_*() rulesAndrew Tridgell2011-02-181-0/+9
| | | | | | this allows you to prepend a subdirectory to the source rules, after variable substitution. This is useful for the s3 waf build when it is in s3build/
* waf: use Utils.WafError() instead of sys.exit(1)Andrew Tridgell2011-02-181-2/+1
| | | | better to raise an expection than just exiting
* tevent: Fix a commentVolker Lendecke2011-02-171-2/+1
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Feb 17 18:16:18 CET 2011 on sn-devel-104
* s4-smbtorture: add more complex spoolss_EnumPrinterDataEx test.Günther Deschner2011-02-171-0/+721
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Feb 17 16:46:28 CET 2011 on sn-devel-104
* s3-lsa: support trust objects in _lsa_QuerySecurity().Günther Deschner2011-02-171-0/+1
| | | | Guenther
* s3-lsa: in _lsa_QuerySecurity() query the sd from the lsa policy handle.Günther Deschner2011-02-171-6/+4
| | | | Guenther
* s3-lsa: only proceed in _lsa_EnumTrustedDomainsEx when backend has trusted ↵Günther Deschner2011-02-172-1/+10
| | | | | | domain support. Guenther
* s3-passdb: add PDB_CAP_TRUSTED_DOMAINS_EX.Günther Deschner2011-02-171-2/+3
| | | | Guenther
* s3-cluster remove more CLUSTER_SUPPORT #ifdef stuffAndrew Bartlett2011-02-171-4/+0
|
* s3-cluster Always fill in the clustering vnn elementAndrew Bartlett2011-02-174-36/+0
| | | | | | This avoids this structure being partially uninitialised. Adnrew Bartlett
* s3: add server_id.idl and use only autogenerated code.Günther Deschner2011-02-179-87/+34
| | | | | | | | | Volker, Tridge and other clustering gurus, please check. It is ok to get rid of ifdef CLUSTER_SUPPORT here, right ? Why was unique_id not marshalled at all ? Guenther
* s4:scripting/python/modules.c - remove a really unnecessary variableMatthias Dieter Wallnöfer2011-02-171-1/+0
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Thu Feb 17 16:01:44 CET 2011 on sn-devel-104
* s3-waf: add check for "struct sigevent" and some of its members.Günther Deschner2011-02-171-0/+11
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Feb 17 12:01:58 CET 2011 on sn-devel-104
* s3-waf: add check for "struct utimbuf".Günther Deschner2011-02-171-0/+5
| | | | Guenther
* s3: increase the log level for missing PIDs on SIGCHLDDavid Disseldorp2011-02-171-1/+2
| | | | | | | | | | | | | | | | | | | Since the fix for bso#7836, the parent smbd is responsible for maintaining an up-to-date printcap cache. It does this by forking a child process to asynchronously fetch printcap data from CUPS. When the child process exits after fetching all printcap data, the parent smbd is sent SIGCHLD. This triggers smbd_sig_chld_handler() which looks for the exited process PID on a "children" list. Child smbd process PIDs are added to the "children" list to ensure cleanup on unclean shutdown and log level change notification messages. Printcap update process PIDs are not added to the list as they do not maintain any state that requires cleanup, nor do they wait on tevent for messages. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Feb 17 11:11:45 CET 2011 on sn-devel-104
* heimdal Pass F_CANON down to the hdb layer for servers in AS-REP as wellAndrew Bartlett2011-02-171-2/+1
| | | | | | | | | | | | | This fixes Win2003 domain logons against Samba4, which need a canonicalised reply, and helpfully do set that flag. Specifically, they need that realm in krbtgt/realm@realm that these both match exactly in the reply. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Thu Feb 17 06:40:53 CET 2011 on sn-devel-104
* Add support for testing a Win2k3 domain memberAndrew Bartlett2011-02-172-3/+19
|
* wintest upper case the --vms paramter arguments to wintest.pyAndrew Bartlett2011-02-171-1/+4
| | | | This makes it easier to specify
* s3-selftest: make sure we really use --format=subunit when calling smbtorture4.Günther Deschner2011-02-171-1/+1
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Feb 17 02:01:56 CET 2011 on sn-devel-104
* s4-build: added LOCALEDIR config optionAndrew Tridgell2011-02-172-1/+3
| | | | s3 needs dyn_LOCALEDIR
* s3-waf: move the KRB5_DEPRECATED configure check out of lib/replaceAndrew Tridgell2011-02-172-8/+6
| | | | | | | this needs to be in souce3/, as otherwise it can't handle an in-tree kerberos library Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* idl: naming a structure 'VERSION' is not a good idea!Andrew Tridgell2011-02-173-5/+5
| | | | | | this renames it to ntlmssp_VERSION Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* libndr: remove prototype for nonexisting function ndr_print_ipv4_addr().Günther Deschner2011-02-171-1/+0
| | | | Guenther
* s3-waf: move libsmb/clikrb5.c and libads/kerberos.c into KRBCLIENT.Günther Deschner2011-02-171-7/+5
| | | | | | This avoids two duplicates... Guenther
* nsswitch: make wb_reqtrans a common subsystem.Günther Deschner2011-02-178-12/+15
| | | | Guenther