summaryrefslogtreecommitdiffstats
path: root/source/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| | * r18452: add configure test for a getdirentries() based replacement for ↵Stefan Metzmacher2006-09-132-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | broken readdir() Tru64 need this, linux also has getdirentries() but the native readdir() works but it means we can write the code on linux and when it works it may work on Tru64 too. tridge: can you try to implement this? metze
| | * r18451: move repdir/ into the top dirStefan Metzmacher2006-09-133-3/+3
| | | | | | | | | | | | metze
| | * r18450: - autogenerate the OBJ_FILES for LIBREPLACEStefan Metzmacher2006-09-136-57/+53
| | | | | | | | | | | | | | | | | | | | | - remove samba specific stuff from libreplace - and include the readdir replacement stuff in the standalone builds metze
| | * r18445: splitout the dlfcn related testsStefan Metzmacher2006-09-132-10/+20
| | | | | | | | | | | | metze
| | * r18444: return the correct value on errorStefan Metzmacher2006-09-131-2/+3
| | | | | | | | | | | | metze
| | * r18443: add object files only when neededStefan Metzmacher2006-09-132-1/+4
| | | | | | | | | | | | metze
| | * r18442: run the os2_delete test in the testsuite tooStefan Metzmacher2006-09-134-12/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that shows that Tru64 is broken... It doesn't have getdirent() and the the replacement code doesn't work there. tridge: do you have any idea how to fix this? metze
| | * r18439: 2nd try at a talloc_move() api. This type with the ** ptr interfaceAndrew Tridgell2006-09-1314-32/+34
| | | | | | | | | | | | | | | | | | | | | exposed. Unfortunately this generates a large number of type punning warnings. We'll have to find some magic to hide those.
| | * r18438: I should have examined these uses of talloc_move() moreAndrew Tridgell2006-09-133-10/+5
| | | | | | | | | | | | carefully. Most of them are OK, but a couple were not.
| | * r18437: added a 'make valgrindtest' target for ldbAndrew Tridgell2006-09-131-0/+3
| | |
| | * r18436: converted ldb to use talloc_move() instead of talloc_steal() whenAndrew Tridgell2006-09-1311-76/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | appropriate. Note that I also removed the error checks that were being done on the result of talloc_steal(). They are pointless as talloc_steal() doesn't have any failure modes that wouldn't cause a segv anyway, and they tend to clutter the code
| | * r18435: added a function talloc_move() which is like talloc_steal(), but isAndrew Tridgell2006-09-134-3/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | meant for moving pointers between structures. The difference is that talloc_move() will zero the source pointer, thus ensuring you don't reference the pointer in the old context. talloc_move() is appropriate in some, but not all cases where we use talloc_steal() now. The interface came out of a discussion with Jeremy.
| | * r18432: ensure roken doesn't try to include both inttypes.h and stdint.h. TheAndrew Tridgell2006-09-121-0/+3
| | | | | | | | | | | | two conflict on irix.
| | * r18428: add my copyrightStefan Metzmacher2006-09-121-1/+2
| | | | | | | | | | | | metze
| | * r18427: set sin_port correctly on autobound socketStefan Metzmacher2006-09-121-2/+4
| | | | | | | | | | | | metze
| | * r18426: use 'family' consistantly instead of mixing 'domain' and 'family'Stefan Metzmacher2006-09-122-17/+14
| | | | | | | | | | | | metze
| | * r18424: there's no need to allocate a wrapped socket for unix sockets,Stefan Metzmacher2006-09-121-21/+16
| | | | | | | | | | | | | | | | | | | | | also this makes sure the socket file isn't unlinked if using socket wrapper. metze
| | * r18423: record accept, connect and close events in socket wrapperStefan Metzmacher2006-09-121-1/+30
| | | | | | | | | | | | metze
| | * r18420: fix the build...Stefan Metzmacher2006-09-121-1/+1
| | | | | | | | | | | | metze
| | * r18419: fix include paths of the configure testsStefan Metzmacher2006-09-124-9/+120
| | | | | | | | | | | | metze
| | * r18418: Tru64 has a different prototype for seekdir() returning intStefan Metzmacher2006-09-121-0/+7
| | | | | | | | | | | | | | | | | | when _OSF_SOURCE is defined metze
| | * r18417: overload send() and recv() by socket wrapperStefan Metzmacher2006-09-122-3/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | and add a dummy swrap_dump_packet() function which can later dump the packet content, so that a script can then generate a capture file for wireshark metze
| | * r18410: Reduce noise in the ldb_ildap backend. We regularly search for thingsAndrew Bartlett2006-09-121-3/+1
| | | | | | | | | | | | | | | | | | that don't exist, and this is not a cause for panic. Andrew Bartlett
| | * r18407: test for epoll.h and select.hAndrew Tridgell2006-09-111-1/+4
| | |
| | * r18401: some of our code also relies on fprintf() handling C99Andrew Tridgell2006-09-111-0/+21
| | | | | | | | | | | | semantics. Easiest to just replace it if it doesn't.
| | * r18400: move MAP_FAILED define to lib/replace/system/shmem.hAndrew Tridgell2006-09-112-4/+4
| | |
| | * r18388: remove _XOPEN_SOURCE it causes trouble on BSD and IRIXStefan Metzmacher2006-09-111-6/+0
| | | | | | | | | | | | | | | | | | I need to find a way to define it only on Tru64 maybe. metze
| | * r18383: ok we need _XOPEN_SOURCE 500 and include standards.h on Tru64Stefan Metzmacher2006-09-112-1/+7
| | | | | | | | | | | | | | | | | | to get MAP_FAILED metze
| | * r18382: define _XOPEN_SOURCE to hopefully bring in MAP_FAILED inStefan Metzmacher2006-09-111-1/+6
| | | | | | | | | | | | | | | | | | sys/mman.h on Tru64 metze
| | * r18381: make sure autoconf doesn't add '-O2' to CFLAGSStefan Metzmacher2006-09-111-2/+3
| | | | | | | | | | | | metze
| | * r18378: try enabling _OSF_SOURCE to see if it fixes the tru64 build problems -Andrew Tridgell2006-09-111-0/+6
| | | | | | | | | | | | thanks to volker for the suggestion
| | * r18376: added iconv:native=false option to turn off native iconv. Needed underAndrew Tridgell2006-09-111-0/+3
| | | | | | | | | | | | valgrind as native iconv is so full of overflows
| | * r18374: don't go past the end of this arrayAndrew Tridgell2006-09-111-2/+0
| | | | | | | | | | | | should fix the intermittend failure of the HMACSHA1 test
| | * r18359: better handling of child process killing in standard modeAndrew Tridgell2006-09-111-1/+1
| | |
| | * r18357: Convert more crypto tests from using function results as initialisers.Andrew Bartlett2006-09-114-89/+97
| | | | | | | | | | | | | | | | | | (Fails on older Unix C compilers) Andrew Bartlett
| | * r18353: try to fix the assumption of NULL being handled in printf()Andrew Tridgell2006-09-111-0/+21
| | | | | | | | | | | | | | | permanently by replacing printf() on systems that don't have a C99 printf lib
| | * r18351: functions as initialisers in structures doesn't work on some compilersAndrew Tridgell2006-09-111-26/+25
| | |
| | * r18350: we have to check for lstat() to keep roken happen on hpuxAndrew Tridgell2006-09-111-1/+1
| | |
| | * r18347: run slapd in the foreground so timelimit can kill itAndrew Tridgell2006-09-101-2/+3
| | |
| | * r18346: make sure we kill off the slapd processAndrew Tridgell2006-09-102-4/+26
| | |
| | * r18343: fixed setlinebuf() prototype, added test for it, and use it in twoAndrew Tridgell2006-09-103-4/+5
| | | | | | | | | | | | places to avoid a #ifdef
| | * r18340: some HPUX boxes don't have ptrdiff_tAndrew Tridgell2006-09-101-0/+1
| | |
| | * r18339: need these checks for roken.h on hpuxAndrew Tridgell2006-09-101-0/+11
| | |
| | * r18337: more -Ae tests in check_cc.m4Andrew Tridgell2006-09-101-0/+4
| | | | | | | | | | | | honor the MMAP_BLACKLIST
| | * r18336: autoconf tries to force on C89 mode on HP-UX, using the -AeAndrew Tridgell2006-09-101-0/+4
| | | | | | | | | | | | | | | | | | | | | flag. Unfortunately that flag conflicts with the -AC99 flag, and we get lots of breakage. This is a trick to force off the -Ae option
| | * r18335: more portable bool testsAndrew Tridgell2006-09-102-2/+22
| | |
| | * r18332: added back in our shared mmap test codeAndrew Tridgell2006-09-102-1/+77
| | |
| | * r18328: when we bail out early, set *offset to 0Andrew Tridgell2006-09-101-0/+2
| | |
| | * r18327: 'struct token' is defined on some hostsAndrew Tridgell2006-09-101-5/+5
| | |
| | * r18326: these are not used anymore, I found the bug on *BSDStefan Metzmacher2006-09-101-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | it's the broken BSD make again where we endup with this: ... -c torture/libnet/libnet_rpc.c -o libnet/libnet_rpc.o metze