summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * r17774: this macro is unusedStefan Metzmacher2006-08-241-2/+0
| | | | | | | | | | | | | | | | metze
| | | * r17773: this macros are unsed, with compiler warningsStefan Metzmacher2006-08-241-0/+2
| | | | | | | | | | | | | | | | metze
| | | * r17772: warn about unused macrosStefan Metzmacher2006-08-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | (only when defined in the .c file not in headers) metze
| | | * r17771: add a comment explaing the odd castAndrew Tridgell2006-08-241-0/+6
| | | |
| | | * r17770: don't force -L/usr/lib, it breaks us4Andrew Tridgell2006-08-241-2/+2
| | | |
| | | * r17769: only look for dlopen in -ldl if not found in libc. Needed for us4Andrew Tridgell2006-08-241-2/+1
| | | |
| | | * r17768: This merges in the current version of Brad Henry's windows testingAndrew Tridgell2006-08-2411-0/+1490
| | | | | | | | | | | | | | | | | | | | | | | | | | | | framework patch. There are some issues with the patch that I will discuss in a separate email to the list, but given the low (zero?) impact of the patch as it is, I think its better to integrate it now, then let Brad send some minor update patches later
| | | * r17765: fix handling of old solaris /bin/sh in ldb build/testAndrew Tridgell2006-08-243-5/+9
| | | |
| | | * r17764: more portable setenv() replacementAndrew Tridgell2006-08-241-8/+22
| | | |
| | | * r17763: moved setenv to ldb/replace/Andrew Tridgell2006-08-232-20/+1
| | | |
| | | * r17762: HPUX needs setenvAndrew Tridgell2006-08-232-1/+18
| | | |
| | | * r17756: I don't know why but this only works with the standaloneStefan Metzmacher2006-08-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | ldb build...I'll test more tomorrow. metze
| | | * r17755: fix the build...Stefan Metzmacher2006-08-231-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | I hope we can find a more clean approach to import lib/replace/ into ldb. metze
| | | * r17754: remove the --always-create option from mkproto.plStefan Metzmacher2006-08-231-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and make this behavior the default. as with make 3.81 and autodependencies this way is much faster as make can use faster codepathes internally. (without this make needed more and more startup time after using autodependencies for a few weeks) metze
| | | * r17753: fix compiler warnings and make the code simplerStefan Metzmacher2006-08-231-10/+5
| | | | | | | | | | | | | | | | metze
| | | * r17752: using -1 in a uint16_t value causes compiler warnings,Stefan Metzmacher2006-08-231-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | use UINT16_MAX as invalid search handle metze
| | | * r17750: these have moved to ldb/replace/ nowAndrew Tridgell2006-08-234-126/+2
| | | |
| | | * r17749: more HPUX madnessAndrew Tridgell2006-08-232-0/+33
| | | |
| | | * r17748: make the casts much easier to understandStefan Metzmacher2006-08-231-3/+3
| | | | | | | | | | | | | | | | metze
| | | * r17747: ldb's make test should not try to install somethingStefan Metzmacher2006-08-231-2/+2
| | | | | | | | | | | | | | | | metze
| | | * r17746: the automatic archive creation in make breaks on 3 platforms. Lets tryAndrew Tridgell2006-08-231-2/+4
| | | | | | | | | | | | | | | | manual archives and see if they work a bit better ....
| | | * r17745: got rid of the final asprintf() in ldbAndrew Tridgell2006-08-231-1/+1
| | | |
| | | * r17744: we explicit want to get warnings about declarations after statements:-)Stefan Metzmacher2006-08-231-1/+1
| | | | | | | | | | | | | | | | metze
| | | * r17743: fix compiler warningsStefan Metzmacher2006-08-232-10/+10
| | | | | | | | | | | | | | | | metze
| | | * r17742: make the casts explicit and remove compiler warningsStefan Metzmacher2006-08-231-18/+18
| | | | | | | | | | | | | | | | metze
| | | * r17741: tru64 uses inttypes.h not stdint.h.Andrew Tridgell2006-08-231-0/+3
| | | | | | | | | | | | | | | | ain't standards wonderful?
| | | * r17740: get rid of dependence on asprintf(), using talloc_asprintf() insteadAndrew Tridgell2006-08-232-4/+4
| | | |
| | | * r17739: forgot to add replace/*Andrew Tridgell2006-08-233-0/+120
| | | |
| | | * r17738: solving the seemingly trivial problem of timegm() being missing onAndrew Tridgell2006-08-235-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' errorAndrew Tridgell2006-08-231-1/+2
| | | |
| | | * r17735: a (probably useless) attempt to workaround stupidity in HPs version ofAndrew Tridgell2006-08-231-1/+1
| | | | | | | | | | | | | | | | make
| | | * r17734: tru64 needs these for standalone buildAndrew Tridgell2006-08-231-0/+4
| | | |
| | | * r17733: doxygen is way too noisy to build every time, and it doesn't doAndrew Tridgell2006-08-231-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 onAndrew Tridgell2006-08-2310-43/+33
| | | | | | | | | | | | | | | | either an internet connection, or a list of xsl paths
| | | * r17731: try to cope with freebsd handling of .a dependenciesAndrew Tridgell2006-08-231-1/+1
| | | |
| | | * r17730: cast dlsym result to try to avoid a compiler crash on hpuxAndrew Tridgell2006-08-231-1/+1
| | | |
| | | * r17729: remove the dependence on an internet connection for buildingAndrew Tridgell2006-08-233-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 failureAndrew Tridgell2006-08-221-1/+2
| | | |
| | | * r17725: VPATH and builds out of the source directory causes problems with theAndrew Tridgell2006-08-221-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 appleAndrew Tridgell2006-08-221-2/+12
| | | | | | | | | | | | | | | | will realise that buffer overflows are bad ....
| | | * r17722: better to use talloc_vasprintf() than vasprintf() directly, as itAndrew Tridgell2006-08-221-4/+3
| | | | | | | | | | | | | | | | depends on less libc functions
| | | * r17721: fixed the dlopen and MODULESDIR handling in the standalone buildAndrew Tridgell2006-08-222-3/+7
| | | |
| | | * r17720: in standalone ldb build, some systems need sys/stat.h and a defn ofAndrew Tridgell2006-08-221-0/+5
| | | | | | | | | | | | | | | | comparison_fn_t
| | | * r17719: ldb_cmdline needs to be static for cc on solarisAndrew Tridgell2006-08-221-1/+2
| | | |
| | | * r17718: don't consider a slapadd failure in the ldap backend tests as a ldbAndrew Tridgell2006-08-221-1/+4
| | | | | | | | | | | | | | | | failure
| | | * r17717: this cried for bugs...and they happened...Stefan Metzmacher2006-08-221-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 warningsStefan Metzmacher2006-08-221-8/+8
| | | | | | | | | | | | | | | | metze
| | | * r17715: make the cast explicit and remove compiler warningsStefan Metzmacher2006-08-221-4/+4
| | | | | | | | | | | | | | | | metze
| | | * r17714: fix compiler warningsStefan Metzmacher2006-08-221-2/+2
| | | | | | | | | | | | | | | | metze
| | | * r17713: fix compiler warningsStefan Metzmacher2006-08-222-7/+7
| | | | | | | | | | | | | | | | metze