summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* build: moved lib -> sharedAndrew Tridgell2010-04-061-30/+15
| | | | - remove lib dep creation, it's done by waf
* build: tdb does not depend on tallocAndrew Tridgell2010-04-061-1/+1
|
* build: added waf build rules for ldbAndrew Tridgell2010-04-065-19/+55
|
* build: some more config checksAndrew Tridgell2010-04-061-0/+5
|
* build: added recursive library handlingAndrew Tridgell2010-04-061-1/+13
|
* build: added target directory optionsAndrew Tridgell2010-04-062-0/+22
|
* build: neater way to find libreplace and start on tevent waf buildAndrew Tridgell2010-04-065-32/+128
|
* build: added some comments for tdb buildAndrew Tridgell2010-04-061-3/+15
|
* build: more binaries for waf tdb buildAndrew Tridgell2010-04-061-0/+12
|
* build: added waf build for tdbAndrew Tridgell2010-04-061-0/+24
|
* build: renamed autoconf.py to wafsamba.py and added SAMBA_*() functionsAndrew Tridgell2010-04-064-81/+131
|
* build: updates to waf scripts for replace and tallocAndrew Tridgell2010-04-063-11/+17
|
* build: a first attempt at waf build for talloc and libreplaceAndrew Tridgell2010-04-063-0/+205
| | | | very rough so far
* lib/replace: Don't use StrnCpy inside crypt.cKai Blin2010-04-041-1/+1
| | | | With this and the int32_t/int64_t change, talloc crossbuilds to android
* lib/replace: use correct inttypes in crypt.cKai Blin2010-04-041-2/+2
| | | | This makes the android crossbuild slightly less broken.
* socket-wrapper: not all systems have FIONREAD definedAndrew Tridgell2010-04-031-0/+2
| | | | tru64 for example
* debug: enable talloc loggingAndrew Tridgell2010-04-022-0/+15
| | | | we want to ensure talloc warnings are printed in the log
* talloc: a useful bit of debug codeAndrew Tridgell2010-04-021-0/+8
| | | | | this is useful when tracking down talloc loops. It is probably too expensive to have on by default.
* talloc: add a define for TALLOC_MAX_DEPTHAndrew Tridgell2010-04-022-1/+5
| | | | Thanks to the suggestion from simo
* talloc: change talloc minor version to 2.0.2Andrew Tridgell2010-04-021-1/+1
| | | | this has the talloc_is_parent() bugfix
* talloc: limit the depth that talloc will go for talloc_is_parent()Andrew Tridgell2010-04-021-2/+11
| | | | | | We have a bug in the dcerpc registry code that can cause a talloc loop that chews unlimited CPU because of talloc_is_parent() during a talloc_free()
* subunit: Include remainder of bindings and metadata.Jelmer Vernooij2010-03-3123-10/+1959
|
* testtools: Fix included testtools, for systems that don't have it.Jelmer Vernooij2010-03-3130-1/+679
|
* Put testtools directly under lib/ to make it easier to install from Samba 4.Jelmer Vernooij2010-03-3123-17/+19
|
* smbtorture: Report number of available tests in a testsuite using subunit.Jelmer Vernooij2010-03-313-1/+53
|
* subunit: Also import copies of filters and perl module.Jelmer Vernooij2010-03-3113-1/+1002
|
* replace: allow memmem() with an empty string to return NULLAndrew Tridgell2010-03-301-1/+3
| | | | | This is how FreeBSD behaves. We don't rely on it returning the string in Samba.
* charset: look for the codepages in the right placeAndrew Tridgell2010-03-301-2/+2
| | | | | selftest runs from source3/source4. The codepages when not installed are in ../codepages
* subunit: Update to newer upstream version.Jelmer Vernooij2010-03-295-3/+50
|
* s4-python: Move dnspython to lib/, like the other Python modulesJelmer Vernooij2010-03-29113-0/+16825
| | | | | This also avoids it from being installed if it's already present on the system.
* s4-waf: use the libreplace strerror_r if neededAndrew Tridgell2010-03-292-6/+11
|
* pytalloc: allow for using a system libtalloc-dev with pytallocAndrew Tridgell2010-03-291-1/+1
| | | | | | | | | When we have a system talloc library, we still need to grab pytalloc.h from lib/talloc. We don't want to just use -Ilib/talloc, as otherwise we'll get the in-tree talloc.h which may not be compatible with the system talloc.h So we need to give the path to pytalloc.h
* talloc: testsuite should use <talloc.h> not "talloc.h"Andrew Tridgell2010-03-291-1/+1
| | | | | if we are using the system talloc, the testsuite needs to use the system talloc.h
* tdb: update exports and signatures filesSimo Sorce2010-03-262-0/+2
|
* tdb: Add a non-blocking version of tdb_transaction_startVolker Lendecke2010-03-266-8/+24
|
* s3-smbd: Don't close stdout if we want to log to stdout.Andreas Schneider2010-03-262-5/+7
|
* tevent: added tevent_re_initialise()Andrew Tridgell2010-03-262-0/+17
| | | | | | | | | | This allows us to re-initialise a tevent context without destroying the pointer. That means that if someone keeps a long term ptr to the event context across a fork it will still work. This also brings the memory handling in single and standard process models much closer together, which means less bugs that we don't find with make test.
* util: on FreeBSD true is in /usr/bin. Use execvp to find itAndrew Tridgell2010-03-261-1/+1
|
* libutil: moved the networking defines to util_net.hAndrew Tridgell2010-03-263-27/+29
| | | | These were causing thousands of warnings on solaris8
* libreplace: strerror_r() is needed by heimdal on solaris8Andrew Tridgell2010-03-263-1/+14
|
* tsocket: not all systems have IPV6_V6ONLYAndrew Tridgell2010-03-261-2/+2
|
* tdb: Fix indentation in tdb_new_database()Volker Lendecke2010-03-251-1/+1
|
* Fix some nonempty blank linesVolker Lendecke2010-03-2510-45/+44
|
* python: use '#!/usr/bin/env python' to cope with varying install locationsAndrew Tridgell2010-03-253-3/+3
| | | | this should be much more portable
* libreplace: fixed declaration of dprintf() on FreeBSDAndrew Tridgell2010-03-242-2/+12
|
* build: fixed nss_wrapper on solarisAndrew Tridgell2010-03-241-0/+4
| | | | solaris has different getpwnam_r syntax
* convert_string_talloc_convenience - print out the input buffer in a better ↵Matthias Dieter Wallnöfer2010-03-221-1/+2
| | | | way (using dump_data since it isn't always directly readable)
* tdb: Fix bug 7248, avoid the nanosleep dependencyVolker Lendecke2010-03-221-4/+4
|
* lib/util: add allocate_anonymous_shared()Stefan Metzmacher2010-03-222-0/+33
| | | | metze
* Fix an uninitialized variableVolker Lendecke2010-03-211-0/+4
|