Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | | * | r17742: make the casts explicit and remove compiler warnings | Stefan Metzmacher | 2006-08-23 | 1 | -18/+18 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17741: tru64 uses inttypes.h not stdint.h. | Andrew Tridgell | 2006-08-23 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | ain't standards wonderful? | |||||
| | | * | r17740: get rid of dependence on asprintf(), using talloc_asprintf() instead | Andrew Tridgell | 2006-08-23 | 2 | -4/+4 | |
| | | | | ||||||
| | | * | r17739: forgot to add replace/* | Andrew Tridgell | 2006-08-23 | 3 | -0/+120 | |
| | | | | ||||||
| | | * | r17738: solving the seemingly trivial problem of timegm() being missing on | Andrew Tridgell | 2006-08-23 | 5 | -28/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | some systems requires quite a large change in ldb. The core problem is that ldb doesn't have its own equivalent of lib/replace/, so we have no sane place to put things like timegm.c This patch moves part of lib/replace/ from Samba4 into ldb, and the next patch will remove those parts from Samba4. We will probably need to similarly move parts of lib/replace/ into lib/talloc/ and lib/tdb/, so that at each level the libraries have replacements for the functions they need, but higher level libraries don't need to re-include replacements if a lower level library already replaces the function | |||||
| | | * | r17737: fixed a 'declaration in code' error | Andrew Tridgell | 2006-08-23 | 1 | -1/+2 | |
| | | | | ||||||
| | | * | r17735: a (probably useless) attempt to workaround stupidity in HPs version of | Andrew Tridgell | 2006-08-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | make | |||||
| | | * | r17734: tru64 needs these for standalone build | Andrew Tridgell | 2006-08-23 | 1 | -0/+4 | |
| | | | | ||||||
| | | * | r17733: doxygen is way too noisy to build every time, and it doesn't do | Andrew Tridgell | 2006-08-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | dependencies. If someone can fix it to only rebuild when something changes, then feel free to re-enable it by default. Otherwise use "make doxygen" if you are in need of a doxygen fix .... | |||||
| | | * | r17732: after some help from Jelmer, changed builddocs.sh not to rely on | Andrew Tridgell | 2006-08-23 | 10 | -43/+33 | |
| | | | | | | | | | | | | | | | | either an internet connection, or a list of xsl paths | |||||
| | | * | r17731: try to cope with freebsd handling of .a dependencies | Andrew Tridgell | 2006-08-23 | 1 | -1/+1 | |
| | | | | ||||||
| | | * | r17730: cast dlsym result to try to avoid a compiler crash on hpux | Andrew Tridgell | 2006-08-23 | 1 | -1/+1 | |
| | | | | ||||||
| | | * | r17729: remove the dependence on an internet connection for building | Andrew Tridgell | 2006-08-23 | 3 | -18/+87 | |
| | | | | | | | | | | | | | | | | | | | | standalone ldb by only running xsltproc if we can find a local copy of the required stylesheets | |||||
| | | * | r17726: not having slapd installed isn't a ldb test failure | Andrew Tridgell | 2006-08-22 | 1 | -1/+2 | |
| | | | | ||||||
| | | * | r17725: VPATH and builds out of the source directory causes problems with the | Andrew Tridgell | 2006-08-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | AIX 5.1 version of make. Putting a direct dependency on $(OBJS) works around this, and should be harmless on other systems | |||||
| | | * | r17724: don't rely on strnlen() as MacOSX 10.4 doesn't have it. Someday apple | Andrew Tridgell | 2006-08-22 | 1 | -2/+12 | |
| | | | | | | | | | | | | | | | | will realise that buffer overflows are bad .... | |||||
| | | * | r17722: better to use talloc_vasprintf() than vasprintf() directly, as it | Andrew Tridgell | 2006-08-22 | 1 | -4/+3 | |
| | | | | | | | | | | | | | | | | depends on less libc functions | |||||
| | | * | r17721: fixed the dlopen and MODULESDIR handling in the standalone build | Andrew Tridgell | 2006-08-22 | 2 | -3/+7 | |
| | | | | ||||||
| | | * | r17720: in standalone ldb build, some systems need sys/stat.h and a defn of | Andrew Tridgell | 2006-08-22 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | comparison_fn_t | |||||
| | | * | r17719: ldb_cmdline needs to be static for cc on solaris | Andrew Tridgell | 2006-08-22 | 1 | -1/+2 | |
| | | | | ||||||
| | | * | r17718: don't consider a slapadd failure in the ldap backend tests as a ldb | Andrew Tridgell | 2006-08-22 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | failure | |||||
| | | * | r17717: this cried for bugs...and they happened... | Stefan Metzmacher | 2006-08-22 | 1 | -10/+30 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | we were passing a struct timeval reference as string, and gcc gives a warning...use C99 style initialisation. is there a special reason why the ACB_NORMAL is passed when the force_password_change is selected? metze | |||||
| | | * | r17716: make casts explicit and remove compiler warnings | Stefan Metzmacher | 2006-08-22 | 1 | -8/+8 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17715: make the cast explicit and remove compiler warnings | Stefan Metzmacher | 2006-08-22 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17714: fix compiler warnings | Stefan Metzmacher | 2006-08-22 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17713: fix compiler warnings | Stefan Metzmacher | 2006-08-22 | 2 | -7/+7 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17712: fix compiler warning | Stefan Metzmacher | 2006-08-22 | 1 | -1/+6 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17711: fix compiler warnings | Stefan Metzmacher | 2006-08-22 | 3 | -10/+9 | |
| | | | | | | | | | | | | | | | | metze | |||||
| | | * | r17708: make the automated testing of the ldb ldap backend more portable | Andrew Tridgell | 2006-08-22 | 2 | -7/+9 | |
| | | | | ||||||
| | | * | r17707: Match the output (aside from dividers) the output of | Andrew Bartlett | 2006-08-22 | 1 | -6/+28 | |
| | | | | | | | | | | | | | | | | | | | | | | | | ol-schema-migrate.pl in the schema output. Andrew Bartlett | |||||
| | | * | r17706: remove the dependence on gnu make in the standalone build | Andrew Tridgell | 2006-08-22 | 2 | -66/+39 | |
| | | | | ||||||
| | | * | r17705: Use the paged_searches module by default against the LDAP backend, if | Andrew Bartlett | 2006-08-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | selected. Andrew Bartlett | |||||
| | | * | r17704: Add comments suggesting how to get the LDAP backend working. | Andrew Bartlett | 2006-08-22 | 1 | -3/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Shutdown and reload the LDB, so the entryUUID module knows to read the schema (will be changed once we have a central schema store and notifications). Andrew Bartlett | |||||
| | | * | r17703: Fixes to enable the entryUUID module to work for it's objectClass -> | Andrew Bartlett | 2006-08-22 | 2 | -6/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OID mappings. The key point is to 'enable' the partitions in the partitions module before the init is complete. That way, the modules can perform searches that use partitions. Andrew Bartlett | |||||
| | | * | r17702: test for gcc, and only enable gcc flags if true | Andrew Tridgell | 2006-08-22 | 1 | -2/+1 | |
| | | | | ||||||
| | | * | r17701: doxygen (if installed!) needs to be run in the src directory | Andrew Tridgell | 2006-08-22 | 1 | -1/+1 | |
| | | | | ||||||
| | | * | r17700: Despite our best hopes, the way module initialisation tends to happen, | Andrew Bartlett | 2006-08-22 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | we make searches before things are initialised. Cope with this. Andrew Bartlett | |||||
| | | * | r17699: Remove more printf calls. | Andrew Bartlett | 2006-08-22 | 1 | -11/+9 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Try to cope with partital initialisation. Andrew Bartlett | |||||
| | | * | r17698: The original code assumed that &data->context was a valid talloc | Andrew Bartlett | 2006-08-22 | 2 | -13/+21 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pointer. This only works when this is the only structure member, but when I added a new context pointer, it failed. Andrew Bartlett | |||||
| | | * | r17697: - enable test for slapd | Andrew Tridgell | 2006-08-22 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | - include popt.m4 | |||||
| | | * | r17696: attempt to allow ldb to use an external popt directory, so we can | Andrew Tridgell | 2006-08-22 | 2 | -2/+32 | |
| | | | | | | | | | | | | | | | | | | | | point it at the popt sources in the samba source tree when building in the build farm | |||||
| | | * | r17695: added installcheck target | Andrew Tridgell | 2006-08-22 | 1 | -1/+3 | |
| | | | | ||||||
| | | * | r17694: Don't use printf() in a module... | Andrew Bartlett | 2006-08-22 | 1 | -6/+5 | |
| | | | | ||||||
| | | * | r17693: only install man pages if we have managed to generate them with | Andrew Tridgell | 2006-08-22 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | xsltproc | |||||
| | | * | r17692: - don't try and run ldap tests unless we have slapd | Andrew Tridgell | 2006-08-22 | 1 | -5/+6 | |
| | | | | | | | | | | | | | | | | - fix manpages install | |||||
| | | * | r17691: Make the structure more public, so we have somewhere for calling | Andrew Bartlett | 2006-08-22 | 2 | -5/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | modules to put private data. Andrew Bartlett | |||||
| | | * | r17690: Demonstrate how we can read the schema to find out details needed for | Andrew Bartlett | 2006-08-22 | 1 | -3/+182 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | translation. I hope to have this reading a schema structure in the future. Andrew Bartlett | |||||
| | | * | r17689: build works, this should fix install .... | Andrew Tridgell | 2006-08-22 | 1 | -1/+2 | |
| | | | | ||||||
| | | * | r17688: the commit/test cycle for getting this to work in the build farm sure | Andrew Tridgell | 2006-08-22 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | is tedious! nearly there I hope ..... | |||||
| | | * | r17687: remove circular dependency | Andrew Tridgell | 2006-08-22 | 1 | -2/+2 | |
| | | | |