summaryrefslogtreecommitdiffstats
path: root/source/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| | * r15245: forgot one headerSimo Sorce2006-04-251-0/+9
| | |
| | * r15242: allow to use LDB_FLG_RECONNECTSimo Sorce2006-04-251-0/+4
| | |
| | * r15231: Try to fix detection of ability of CC to generate dependenciesJelmer Vernooij2006-04-251-0/+3
| | |
| | * r15226: Fix order of typedef specification - caught by kblinJelmer Vernooij2006-04-251-1/+1
| | |
| | * r15224: Check whether -MT is actually supported by the compiler before using Jelmer Vernooij2006-04-241-1/+1
| | | | | | | | | | | | automatic dependencies
| | * r15214: Introduce subsystem-specific CFLAGS to keep the global CFLAGS short.Jelmer Vernooij2006-04-241-1/+1
| | |
| | * r15213: Remove helper macro for bcopy() - this causes problems Jelmer Vernooij2006-04-241-5/+0
| | | | | | | | | | | | with system headers on some system and is not a security threat
| | * r15207: Introduce PRIVATE_DEPENDENCIES and PUBLIC_DEPENDENCIES as replacement Jelmer Vernooij2006-04-2416-59/+55
| | | | | | | | | | | | for REQUIRED_SUBSYSTEMS.
| | * r15204: Fix MD5Update prototypeJelmer Vernooij2006-04-241-4/+4
| | |
| | * r15203: Allow system 'bool' type to be defined in another header then stdbool.hJelmer Vernooij2006-04-242-1/+12
| | |
| | * r15201: Use abs() rather then ABS()Jelmer Vernooij2006-04-241-7/+0
| | |
| | * r15200: Move MIN/MAX macros to libreplace as some systems have them Jelmer Vernooij2006-04-244-14/+18
| | | | | | | | | | | | in sys/param.h
| | * r15199: Try to make these prototypes match, to get the build on S390 linux ↵Andrew Bartlett2006-04-241-3/+3
| | | | | | | | | | | | | | | | | | going. Andrew Bartlett
| | * r15191: Avoid uint_t as it's not standard.Jelmer Vernooij2006-04-245-10/+10
| | |
| | * r15186: Introduce ISDOT and ISDOTDOT macros for testing whether a filename isJames Peach2006-04-242-3/+2
| | | | | | | | | | | | | | | "." for "..". These express the intention better that strcmp or strequal and improve searchability via cscope/ctags.
| | * r15178: Fix ldb function calls after big swig rename.Tim Potter2006-04-231-25/+55
| | | | | | | | | | | | | | | | | | Add close() methods to Ldb and LdbMessage classes. Start adding dict interface to LdbMessage.
| | * r15177: Wrap ldb_strerror() function.Tim Potter2006-04-231-0/+1
| | |
| | * r15176: Ensure we don't segfault when we try and delete @FOO records.Andrew Bartlett2006-04-231-5/+10
| | | | | | | | | | | | | | | | | | | | | Don't try and steal the result of a search on failure, it has already been talloc_free()'ed by the ildb code. Andrew Bartlett
| | * r15143: Pull in GNU extensions right at the start of the configure process. ThisJames Peach2006-04-201-2/+0
| | | | | | | | | | | | | | | prevents a warning on comparison_fn_t redefinition every time replace.h is included.
| | * r15120: Minimize the diff between Samba3 and Samba4 tdb: In Samba3 we don't ↵Volker Lendecke2006-04-181-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | allow C++ keywords. Change "private" -> "private_data". Volker
| | * r15113: Add a ldb_strerror() function.Tim Potter2006-04-172-0/+100
| | |
| | * r15110: Start rewriting higher level ldb wrapper.Tim Potter2006-04-171-52/+54
| | |
| | * r15109: Wrap ldb_global_init()Tim Potter2006-04-171-0/+2
| | |
| | * r15100: Port the bugfix for #3569 to Samba4Volker Lendecke2006-04-173-3/+19
| | |
| | * r15099: An attempt to fix BSD make portability issues. With these changes ↵Alexander Bokovoy2006-04-171-1/+1
| | | | | | | | | | | | Samba 4 builds successfully on NetBSD 3.0
| | * r15097: Add constants for ldb errors.Tim Potter2006-04-161-0/+50
| | | | | | | | | | | | Add wrappers for ldb_dn_explode() and ldb_dn_linearize().
| | * r15096: Fix typo.Tim Potter2006-04-161-1/+1
| | |
| | * r15095: Fix up typemap for struct ldb_val so that ldb_msg_add_value() wrapper Tim Potter2006-04-161-14/+13
| | | | | | | | | | | | works properly.
| | * r15092: Remove some swig stuff that didn't work out and the %rename call.Tim Potter2006-04-151-60/+13
| | | | | | | | | | | | Add wrappers for some of the ldb_msg_* functions.
| | * r15091: Raise LdbError instead of IOError when ldb function calls return an Tim Potter2006-04-151-7/+14
| | | | | | | | | | | | error.
| | * r15090: Since we wrap the swig wrapper in another layer of Python, there isn't Tim Potter2006-04-152-43/+22
| | | | | | | | | | | | much point in doing lots of %rename calls in tdb.i so get rid of them.
| | * r15065: Remove duplicate prototype.Tim Potter2006-04-131-1/+0
| | |
| | * r15055: this was my version for the crash bug in the messaging code...Stefan Metzmacher2006-04-121-21/+8
| | | | | | | | | | | | | | | | | | | | | it also makes the function a bit shorter and clearer, as the tmp msg_types only have one handler and not a list metze
| | * r15050: fixed a double free in the new messaging code.Andrew Tridgell2006-04-121-4/+4
| | |
| | * r15049: for really efficient oplock handling with thousands of open files weAndrew Tridgell2006-04-123-35/+110
| | | | | | | | | | | | | | | | | | | | | | | | will need a separate messaging endpoint per open file. To make this efficient extend the messaging layer to have a new registration function for temporary message types that maps via an idtree. I have updated the LOCAL-MESSAGING test to use the new function.
| | * r15048: started on the server side implementation of oplocks. The code is notAndrew Tridgell2006-04-121-0/+1
| | | | | | | | | | | | | | | functional yet, I'm committing so it doesn't diverge too much from other peoples work. It is disabled by default.
| | * r15036: Add out of tree build support and see how buildfarm will respond to ↵Alexander Bokovoy2006-04-111-4/+7
| | | | | | | | | | | | make constructs
| | * r15002: More cleanups in build/m4/rewrite.m4Jelmer Vernooij2006-04-081-0/+9
| | |
| | * r15000: Move some more autoconf tests out of build/m4/rewrite.m4Jelmer Vernooij2006-04-086-11/+33
| | | | | | | | | | | | Guarantee availability of __FUNCTION__ in libreplace
| | * r14999: Remove more unused autoconf codeJelmer Vernooij2006-04-087-35/+19
| | | | | | | | | | | | Simplify va_copy() replacement code a bit
| | * r14998: Remove unused autoconf test, move others to proper placesJelmer Vernooij2006-04-082-0/+205
| | |
| | * r14996: Fix compilation of gencacheJelmer Vernooij2006-04-081-0/+1
| | |
| | * r14992: Allow load_module() to be used externallyJelmer Vernooij2006-04-081-10/+11
| | |
| | * r14984: marking mprBreakpoint() as a __noreturn__ function should reduce theAndrew Tridgell2006-04-081-1/+1
| | | | | | | | | | | | number of ejs errors from the IBM checker
| | * r14981: fixed a use of a wild ptr in regshellAndrew Tridgell2006-04-081-3/+3
| | |
| | * r14978: fixed a print of NULLAndrew Tridgell2006-04-081-1/+1
| | |
| | * r14977: more IBM checker fixesAndrew Tridgell2006-04-081-5/+1
| | |
| | * r14976: another use of the magic comment recognised by the IBM checker forAndrew Tridgell2006-04-081-0/+1
| | | | | | | | | | | | deliberate fall through in switch
| | * r14972: fix an uninitialised warning from ibm checkerAndrew Tridgell2006-04-081-1/+1
| | |
| | * r14970: Add configure stuff for Python to tdb and ldb standalone builds.Tim Potter2006-04-082-0/+62
| | |