summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r18518: we replace snprintf() if its not C99, so we should also add the rep_Andrew Tridgell1-2/+2
prototype in that case (This used to be commit 64b5ff171d04bd93bd41309edfbe532c01a46e4f)
2007-10-10r18517: I find it less confusing if tests are run in the order they areAndrew Tridgell1-1/+1
added. (This used to be commit 3e1844b2b229d6e84436d6c455bef707d0efcafc)
2007-10-10r18516: I'm surprised that compilers allowed this at allAndrew Tridgell1-2/+2
(This used to be commit 46aa8a5e8914184575fa6b9ec9edced8dd615eab)
2007-10-10r18515: Remove calls to "time" for now as some sh implementations don't have it,Jelmer Vernooij1-2/+2
causing this test to fail. (This used to be commit fc3f41a4ab38fd32386c5bdb1979cc26892afcf8)
2007-10-10r18514: fix configure caching of AC_VERIFY_C_PROTOTYPE() macroStefan Metzmacher1-3/+3
metze (This used to be commit 8e49dc69e7d588c85c9e9e7b24b595c61c1da95a)
2007-10-10r18505: add configure checks for telldir() and seekdir()Stefan Metzmacher3-4/+47
telldir() is different on older OpenBSD versions seekdir() is different Tru64 tridge: OpenBSD seems to like this replacement:-) while MAC OS 10 gets 134 runtime error:-( lets wait what Tru64 will give metze (This used to be commit 1f4e602ff239b7feabb2dd1d6938dedf91bde5cd)
2007-10-10r18504: Handle mappings for RENAME and KEEP attributes better. We don't needAndrew Bartlett2-46/+68
to mess with the values in these cases. Where we do convert the values, try and convert substrings. This isn't going to be perfect, but we should try rather than segfault. This also avoids using the wrong arm of the union for the attribute name The change in the entryUUID module is to correct the case of sAMAccountName, due to the case sensitive ldap.js test. Andrew Bartlett (This used to be commit 81d9a692c1e74ec9078bf718003eafdba85b4324)
2007-10-10r18503: - _GNU_SOURCE is defined by libreplaceStefan Metzmacher2-7/+4
- move AS_HELP_STRING replacement to libreplace metze (This used to be commit ace406a36ebbed230bf6c844e4639bac5e6c9882)
2007-10-10r18502: remove unused linesStefan Metzmacher1-10/+0
metze (This used to be commit 37f55c08c304feddf2ca5d0d20deeb9a6317e2c3)
2007-10-10r18501: libreplace needs 'long long', bailout if not presentStefan Metzmacher3-18/+7
or the size is not 8 bytes or more. samba4 doesn't need type checks anymore metze (This used to be commit d8fdd05482fc6b9bfb48d72db6b467e3e5c05e4d)
2007-10-10r18500: move make related checks into its own fileStefan Metzmacher3-37/+44
metze (This used to be commit 6a6729fb7219ac7eb160b787827acdf1f7af7cc8)
2007-10-10r18499: this hopefully lets the code compile on OpenBSDStefan Metzmacher1-0/+6
the prototype was fixed in this revision http://www.openbsd.org/cgi-bin/cvsweb/src/include/dirent.h.diff?r1=1.15&r2=1.16 so we'll need a configure test to find the prototype of telldir later metze (This used to be commit c4da3b43640368aff98e501b6ca7801821fd2fbd)
2007-10-10r18498: While passing stack values into torture_tcase_add_test is bad, valuesAndrew Bartlett1-3/+8
assigned into a static initialiser must be constant. Wishing sweet dreams on the jet-lagged tridge :-) Andrew Bartlett (This used to be commit 174014d956cb1d246bd07218ea289418195a73fb)
2007-10-10r18497: fixed crash bug in irpc test - the torture_tcase_add_test() callAndrew Tridgell1-2/+2
is passed a stack pointer from values[], which is not valid when the torture suite is run. Jelmer, need to be careful when converting test code not to use stack values from the torture_XXX() call in the test suite (This used to be commit 2744a0b385f58aaf0b45f33bec0d0a16c09709d7)
2007-10-10r18496: yet another dlopen valgrind suppressionAndrew Tridgell1-0/+11
(This used to be commit 041c2c1202b8e5bf2a6a8d90530751560dacd9f4)
2007-10-10r18495: More work on the LDAP backend (which now passes a lot of our tests!)Andrew Bartlett7-78/+145
This adds a list of attributes that are in our wildcard seaches, but the remote server requires to be explicitly listed. This also cleans up the handling of wildcards in ldb_map to be more consistant. Also fix the partitions module to rebase the search, if on the GC port, we do a subtree search. (Otherwise backends can rightly complain that the search is not in their scope). Andrew Bartlett (This used to be commit bc58792b7102f086b19353635d5d5ef9d40a0aae)
2007-10-10r18494: don't count 'DWARF2 CFI reader' messages as valgrind failuresAndrew Tridgell1-1/+1
(This used to be commit f7eaa03d6f6f28408d8e6a7e33c540e50cbed3a1)
2007-10-10r18493: another "blind coding" attempt at a getdirentries() based readdir()Andrew Tridgell1-2/+5
replacement (This used to be commit 94b73d692bf85604c7be811bad0b8c6a08b18103)
2007-10-10r18492: an attempt at replacing readdir() with something based onAndrew Tridgell1-1/+157
getdirentries() This is untested on any of the platforms that matter, so we'll just have to see if the build farm machines like it (This used to be commit 343b0871b16c86b68badd4581420f475f94e79c9)
2007-10-10r18491: fixed a warningAndrew Tridgell1-1/+1
(This used to be commit 1b17f0f08f85238717e88966cba311ff4b933a9a)
2007-10-10r18490: on irix _XOPEN_SOURCE_EXTENDED needs to be defined to 1, not justAndrew Tridgell1-2/+2
defined (This used to be commit 39d984738b1931e16cb0e6abfdb58108fc97da90)
2007-10-10r18489: dlopen is so amazingly broken on linuxAndrew Tridgell1-0/+51
supress the valgrind warnings (This used to be commit fb69f8cb2c73d123c2099011fcd423f514a93da3)
2007-10-10r18488: we have to make sure any extensions flags also make it intoAndrew Tridgell2-11/+16
confdefs.h, otherwise the real build and the configure tests will not be significant this change fixes the build of libreplace on hpux with gcc (This used to be commit d37fc315325c93414ce0942d28f0f47b42873b95)
2007-10-10r18486: hopefully this fixes the panics on solarisStefan Metzmacher1-0/+3
metze (This used to be commit 22cfc3404ccb621dad194fe04c5f2885fb16f79c)
2007-10-10r18485: include libreplace.m4 in the aclocal.m4 filesStefan Metzmacher14-26/+17
and use the macros in configure.ac metze (This used to be commit 95d33e4d71b4c97af8413bcd136f393aa3e380dd)
2007-10-10r18482: Fix a couple of small issues in the generated server code.Jelmer Vernooij1-3/+3
(This used to be commit ddfe3c54439eb76327608e04df9381621ab875b8)
2007-10-10r18479: start hiding libreplace configure tests behind macrosStefan Metzmacher3-64/+126
AC_LIBREPLACE_CC_CHECKS AC_LIBREPLACE_BROKEN_CHECKS and AC_LIBREPLACE_ALL_CHECKS which calls the 2 others I'll add some more, so that samba3/samba4 can later call them in the wanted order and all standalone builds use AC_LIBREPLACE_ALL_CHECKS. metze (This used to be commit e7a30456c76f4bf9a79cdcff6b15c894bc20c954)
2007-10-10r18478: Add missing declaration for status.Jelmer Vernooij1-0/+1
(This used to be commit 64909a0d69a938e96f7a04b4288ca851fb8fe18a)
2007-10-10r18477: Finish server code generator for Samba 3.Jelmer Vernooij1-0/+68
(This used to be commit 4e2f20042448721ba1df5bbbb77710e155f23953)
2007-10-10r18475: Start working on server code generator that uses libndr.Jelmer Vernooij3-126/+133
(This used to be commit aa1c550d371c5874668baf06be7168c85dc5d48b)
2007-10-10r18474: - we don't need to explicit check stdint.h and inttypes.hStefan Metzmacher1-8/+17
alsready done by autoconf magic - display the sizes of all standard C types - check for int64_t and uint64_t metze (This used to be commit 371a33a871b67f12af177696bae6aa87d2c1d9f9)
2007-10-10r18472: - use STDC_HEADERS for stdlib.h and stddef.h as autoconf doesStefan Metzmacher2-6/+4
- AC_HEADERS_STDC is not explicit needed metze (This used to be commit 8f20d2cfe564164ea049dbb9f52d885e11098c2a)
2007-10-10r18471: Remove other Samba3 parser generator support as well - it's noJelmer Vernooij5-1379/+2
longer necessary as we can use libndr now. (This used to be commit 22142a9f3d5e759742c79a591413e5e8af04b22f)
2007-10-10r18470: Remove obsolete client generator code for Samba3 (we're now using theJelmer Vernooij2-152/+2
new code that uses libndr) (This used to be commit ea0ef1542f78e3a58d86b5693ec17c145050526b)
2007-10-10r18468: Add IDL for dfs_EnumEx. Still lacks test(s)Jelmer Vernooij1-1/+7
(This used to be commit 79b6001f919d398e52ceec29f5ebe6f0018e5660)
2007-10-10r18465: much better fix for a roken specifiv problemStefan Metzmacher2-16/+1
metze (This used to be commit 1ae1e68fe9e1004f1a11847714b2e71715a1ce03)
2007-10-10r18463: add some more warning flags, tested with gcc 2.95.3 on SuSE 7.3Stefan Metzmacher1-1/+11
metze (This used to be commit 553a90cbe200d2030e4caefe949b48d63abe382d)
2007-10-10r18462: make the output a bit nicerStefan Metzmacher1-1/+5
metze (This used to be commit 0b61ea3ed7b833dbb5a7ca8ef2bb29c1b68f5cad)
2007-10-10r18461: - extend make showflagsStefan Metzmacher1-2/+3
- let make test trigger showflags metze (This used to be commit 43c1d775b900b305345afe394383b78e83e4e5cb)
2007-10-10r18460: split out timegm test and only add timegm.o when neededStefan Metzmacher3-17/+7
metze (This used to be commit f9bff4dbdad8c7acc649d13a5666b58967bf5d92)
2007-10-10r18459: Set access to test LDAP server as system to anonymous, but also noteAndrew Bartlett3-5/+11
the correct authz-regexp for future use. Fail to test if slapd fails and TEST_LDAP=yes (This used to be commit 1daf4e7bd47df4f127447ab9b5d583bbe7b2a10a)
2007-10-10r18458: move wins32 stuff to the top dirStefan Metzmacher4-3/+4
metze (This used to be commit 521e94f2693eab9053d9e3f1bbc56cdf2e0adbcd)
2007-10-10r18456: Tru64 doesn't have getdents() so we don't need this ifdef's...Stefan Metzmacher1-7/+0
metze (This used to be commit 5af86eb3f07e26aead67ab0dd46576e0aefe8eb4)
2007-10-10r18455: check if getdents() and getdirentries() are available.Stefan Metzmacher1-0/+2
(only for the nicer configure output) metze (This used to be commit d53eb6bd10903d696c5ed9aad3bca3ddf35b2b51)
2007-10-10r18454: this was just for debugging...Stefan Metzmacher1-1/+0
metze (This used to be commit f9f14a94297d72af13b043db99fa892e5e3dcb46)
2007-10-10r18452: add configure test for a getdirentries() based replacement for ↵Stefan Metzmacher2-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 (This used to be commit dd791d255ca61159b38a59b89f954a61fc5e9cf6)
2007-10-10r18451: move repdir/ into the top dirStefan Metzmacher3-3/+3
metze (This used to be commit a564194817d9b78e353abb6bf0548b2dd9eb130b)
2007-10-10r18450: - autogenerate the OBJ_FILES for LIBREPLACEStefan Metzmacher7-61/+54
- remove samba specific stuff from libreplace - and include the readdir replacement stuff in the standalone builds metze (This used to be commit 3cac61152ef9a32313d7f7e5d38651f03a31f251)
2007-10-10r18448: this gives nicer output...Stefan Metzmacher1-1/+1
metze (This used to be commit 6bdb329da5771b4be792d8889d3ece8f93a495b0)
2007-10-10r18447: make sure we bail out if the config.h is not generatedStefan Metzmacher2-0/+8
by samba's configure. this could happen when you have done a standalone build in lib/replace/, lib/talloc, ... metze (This used to be commit d8e88386748d3952c6a82726c9d36cad870992fd)