summaryrefslogtreecommitdiffstats
path: root/source4/lib
Commit message (Collapse)AuthorAgeFilesLines
...
| * Fix ldapi support.Jelmer Vernooij2008-02-291-2/+2
| | | | | | | | (This used to be commit 9499f8eea534cf93f96af17941e9195aadc0a756)
| * libreplace: try and fix rep_getifaddrs() for Tru64.Michael Adam2008-02-291-21/+16
| | | | | | | | | | | | | | | | Don't fail when there is no address assigned to the interface. Put NULL into the ifaddrs structure instead. Michael (This used to be commit ee170c85e0e76411bd752de5fe51db6940dab929)
| * libreplace: use the new getifaddrs test also for autoconf.Michael Adam2008-02-282-33/+16
| | | | | | | | | | Michael (This used to be commit a2a506ff0eae2a64ebe2ddbb81a6c2a5fa7fe3da)
| * libreplace: add extended getifaddrs test that prints out the interfaces.Michael Adam2008-02-283-7/+100
| | | | | | | | | | Michael (This used to be commit 9d2bab09aac22c00fe23f1e1265a2dbd0901e9ce)
| * Merge branch 'v4-0-trivial' into v4-0-testJelmer Vernooij2008-02-2812-25/+50
| |\ | | | | | | | | | (This used to be commit 6cbb241c05539cc62526a366094c9c472e6422a5)
| | * Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-trivialJelmer Vernooij2008-02-2712-52/+157
| | |\ | | | | | | | | | | | | (This used to be commit d96fcc52a70fd1236b767b1d88a39d78c4e8c48c)
| | * | Remove uses of global_loadparm.Jelmer Vernooij2008-02-255-11/+15
| | | | | | | | | | | | | | | | (This used to be commit a16c9a2129ce92e7e1a613b2badd168e42ead436)
| | * | Introduce mprLpCtx() similar to mprMemCtx() for loadparm_context used byJelmer Vernooij2008-02-212-0/+9
| | | | | | | | | | | | | | | | | | | | all EJS code. (This used to be commit 184988866fe8e740f58e3683eefcaa70f8b51d11)
| | * | Remove yet more global_loadparm instances.Jelmer Vernooij2008-02-211-2/+4
| | | | | | | | | | | | | | | | (This used to be commit 5de88728ac5c567d3711d1ac6862bbdaced84b75)
| | * | Remove more global_loadparm instance.sJelmer Vernooij2008-02-211-5/+9
| | | | | | | | | | | | | | | | (This used to be commit a1280252ce924df69d911e597b7f65d8038abef9)
| | * | Remove yet more uses of global_loadparm.Jelmer Vernooij2008-02-214-7/+13
| | | | | | | | | | | | | | | | (This used to be commit e01c1e87c0fe9709df7eb5b863f7ce85564174cd)
| | * | Cache iconv_convenience.Jelmer Vernooij2008-02-211-12/+22
| | | | | | | | | | | | | | | | (This used to be commit efd577cb5035f1b83bb8cd8958dcecb0ac0d055b)
| * | | Cache iconv_convenience.Jelmer Vernooij2008-02-281-12/+22
| | | | | | | | | | | | | | | | (This used to be commit fe1d3e69990a71d7639ac8718f6ca51de4d7e6d2)
| * | | Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-localAndrew Bartlett2008-02-288-6/+109
| |\ \ \ | | | |/ | | |/| | | | | (This used to be commit ba864cfd7ce4b69179431131cac9661cbf48bf32)
| | * | libreplace: standalone build: use -I$srcdir instead of -I.Michael Adam2008-02-271-1/+1
| | | | | | | | | | | | | | | | | | | | Michael (This used to be commit ff311e613226e660998824b887cb9595ffbe0275)
| | * | libreplace: fix standalone build - add necessary libs.Michael Adam2008-02-272-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The libs needed for getifaddrs replacements have to be added to LIBS and used for the testsuite target. Michael (This used to be commit e7c1d6513b945b205abe84b18a251d06e737e659)
| | * | libreplace: fix standalone build on some systems.Michael Adam2008-02-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getifaddr tests include system/network.h, which does not find getaddrinfo.h without "-I.". Michael (This used to be commit cd95c702ed90128f659e27709c61d4c6abc969ef)
| * | | Fix rdn_name errors.Andrew Bartlett2008-02-281-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Return the correct error when the DN is mismatched with it's RDN attribute (now matches AD). Andrew Bartlett (This used to be commit bf7166e785e5c5d52dbb0c12e5e4206d74e72f4e)
* | | | registry: Add an explicit test for recursive deletion.Andrew Kroeger2008-02-261-0/+37
| | | | | | | | | | | | | | | | (This used to be commit 5e905804993df4c2ac28090d056e6db6bb63ac44)
* | | | registry: Implement recursive deletes for regf-backed registry.Andrew Kroeger2008-02-261-4/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When deleting a registry key that contains subkeys or values, Windows performs a recursive deletion that removes any subkeys or values. This update makes deletes for an regf-backed registry consistent with Windows. The regf-backed registry does not have transactional integrity when performing multiple operations. Therefore, if an error occurs during the recursive deletion, the regf-backed registry may be left in an inconsistent state. (This used to be commit b0321bad290d1a9399b4aba140a622e3af6d7575)
* | | | registry: Implement recursive deletes for dir-backed registry.Andrew Kroeger2008-02-261-6/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When deleting a registry key that contains subkeys or values, Windows performs a recursive deletion that removes any subkeys or values. This update makes deletes for an dir-backed registry consistent with Windows. The dir-backed registry relies on the underlying filesystem, which does not generally have transactional integrity when performing multiple operations. Therefore, if an error occurs during the recursive deletion, the dir-backed registry may be left in an inconsistent state. (This used to be commit 6b5fbf7e4e38342bcd80e63f46cd295f89ab1ee9)
* | | | registry: Implement recursive deletes for ldb-backed registry.Andrew Kroeger2008-02-261-27/+116
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | When deleting a registry key that contains subkeys or values, Windows performs a recursive deletion that removes any subkeys or values. This update makes deletes for an ldb-backed registry consistent with Windows. Under ldb, the deletion is done using an explicit transaction. If an error occurs during the deletion the entire transaction is cancelled, leaving the registry as it was before the deletions started. (This used to be commit ca796c8fb10598674a5eef31d15863e79bcf3db8)
* | | libreplace: Add tests for connect and gethostbyname.Michael Adam2008-02-265-0/+96
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Provide dummy replacements when a function isnt found. The functions are also searched for in certain libraries, and variables SOCKET_LIBS and NSL_LIBS are set accordingly. One purpose of this is to fix the getifaddrs tests on systems where e.g. the socket calls require special libs for linking. Michael (This used to be commit 900d17acb95f1becfc46656a12c107336c027ef7)
* | | Fix build on VOS: socklen_t is needed for rep_inet_ntop: move it up.Michael Adam2008-02-261-5/+5
|/ / | | | | | | | | Michael (This used to be commit 8a26a6e8f11aca5119b15e304213548ad608dc5b)
* | Update homepages for talloc, tdb and ldb subprojectsSimo Sorce2008-02-253-34/+24
| | | | | | | | (This used to be commit 8cb07814bc6627fc8eba228eafd13336e3ca3758)
* | libreplace: don't use socketwrapper for getifaddrs() implementations.Michael Adam2008-02-221-0/+2
| | | | | | | | | | | | Michael (cherry picked from commit 85eec1d1d6b674294c50eb912fbe7d5a1dd42909) (This used to be commit a83db886e50b6ceeb71d93bf86fb5e0964b8d45f)
* | libreplace: Fix comment originating from old samba source.Michael Adam2008-02-221-1/+1
| | | | | | | | | | Michael (This used to be commit 0440bcfe6359ca4842f473b1ca799cad9f1c6c96)
* | libreplace: fix creation of conftest files for getifaddrs tests.Michael Adam2008-02-221-4/+11
| | | | | | | | | | | | | | | | Add missing includes of replace.c and defines of SOCKET_WRAPPER_NOT_REPLACE. Michael (cherry picked from commit 26e6ebc7090b5742deb67805d85d809cafb4543d) (This used to be commit e00c6513e05afe91d4c419287283b34e931a161c)
* | Fix linked list of ifaddrs in implementations of rep_getifaddrs.Michael Adam2008-02-221-3/+3
| | | | | | | | | | | | | | | | Produce proper list instead of one-node-loop. Michael (cherry picked from commit ec9f4f5066ba7a8bf3af931fd4969590140c0b2b) (This used to be commit 744d5ba7adab65a9774a18eb42b7090f49e423f2)
* | Add missing initalizations of lastif in rep_getifaddr implementations.Michael Adam2008-02-221-3/+6
| | | | | | | | | | | | Michael (cherry picked from commit 65710e752f72070cb911867ff9f31f91904ca5c0) (This used to be commit 5bd613a2cda5d287706f2ce72f4ee08a7fa45b72)
* | libreplace: fix compile errors in getifaddrs.cMichael Adam2008-02-211-6/+3
| | | | | | | | | | | | Michael (cherry picked from commit 22cdd4cb507022d9c670b7d5cbc8d357b0b91637) (This used to be commit 4da2d999a28c8fd3e93480194a153cf6a10de986)
* | Try and fix getifaddrs check on irix: dont't try to include config.hMichael Adam2008-02-211-0/+3
|/ | | | | | | | The missing header file is judged "catastrophic" on irix. Michael (cherry picked from commit 5778c90819a5a5cee38be690f442c571f3a6a051) (This used to be commit 0d4522a06d4465f6eadbdf14381c9e08cf7e1dc9)
* Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-trivialJelmer Vernooij2008-02-212-2/+1
|\ | | | | | | (This used to be commit 52a8d06f00ab3900e2186e047902dbcbe3138a01)
| * ldb_sqlite: fix the buildStefan Metzmacher2008-02-212-2/+1
| | | | | | | | | | metze (This used to be commit 14c8e3101cc3b0138a551afdf3a94f4bb11bb21d)
* | Remove extra whitespace, use public variable in IDL.Jelmer Vernooij2008-02-211-1/+1
| | | | | | | | (This used to be commit bf08b682586f6b9a17d4ec3934836be957ef955c)
* | Remove more uses of global_loadparm.Jelmer Vernooij2008-02-217-24/+38
| | | | | | | | (This used to be commit 3430cc60972b94d0d238bc39f473feed96949c5d)
* | Remove more uses of global_loadparm.Jelmer Vernooij2008-02-211-7/+8
| | | | | | | | (This used to be commit 58a5b1de2b093fe642eb11d76d12db0edf60c25c)
* | Avoid use of global_loadparm.Jelmer Vernooij2008-02-211-1/+1
|/ | | | (This used to be commit c5a95bbe0ce55c29e135a9c6058bf192ec3bb546)
* Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-localAndrew Bartlett2008-02-2191-2964/+1762
|\ | | | | | | (This used to be commit 5cd3310b78a85243eb436d05db3228c3495f9162)
| * Support dlopen(NULL, ...) on HPUX.Jelmer Vernooij2008-02-201-0/+2
| | | | | | | | (This used to be commit 53c70b5f77a3b9abaab783590e66278129173d5f)
| * Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-trivialJelmer Vernooij2008-02-204-65/+65
| |\ | | | | | | | | | (This used to be commit 54ebd4e353038e86470ad036aa038e18a4296b4b)
| | * libreplace: change samba_cv_ to libreplace_cv_ in libreplace.m4.Michael Adam2008-02-201-36/+36
| | | | | | | | | | | | | | | Michael (This used to be commit 83387ecccfe95b80525bf53c5fc9e945ffee10ec)
| | * libreplace: change samba_cv_ to libreplace_cv_ in system/config.m4.Michael Adam2008-02-201-8/+8
| | | | | | | | | | | | | | | Michael (This used to be commit 00c173bfba9c659750bf231fbd9278dd38aa8bfc)
| | * libreplace: change samba_cv_ to libreplace_cv_ in getpass.m4.Michael Adam2008-02-201-6/+6
| | | | | | | | | | | | | | | Michael (This used to be commit d3b3d3ec9ff64108b4cd5b7c912ab4ea207256cb)
| | * libreplace: change samba_cv_ to libreplace_cv_ in getifaddrs.m4Michael Adam2008-02-201-15/+15
| | | | | | | | | | | | | | | Michael (This used to be commit acab9def2a1e3460bef8baae6efc66d9dfad6eac)
| * | Make more module init functions public, since they are compiled with ↵Jelmer Vernooij2008-02-204-5/+5
| |/ | | | | | | | | | | -fvisibility=hidden. Not doing this causes failures on Mac OS X. (This used to be commit da1a9438bd89569077ef1eaa9dc977b5f9d62836)
| * Allow building ldb as static library again \o/Jelmer Vernooij2008-02-201-1/+0
| | | | | | | | (This used to be commit a57adcfdd32fa9516eb092f7568e213347c583d7)
| * Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into ↵Jelmer Vernooij2008-02-202-0/+10
| |\ | | | | | | | | | | | | | | | v4-0-nodeclare (This used to be commit 7a2ff3ee26bce49a3eeeb270f4a5e4df2adbefbb)
| | * NetBSD does not support AI_ADDRCONFIGVolker Lendecke2008-02-201-0/+7
| | | | | | | | | | | | | | | (cherry picked from commit fb3f7f4046fa195baf5116598772d9016238637f) (This used to be commit e8f3653414c12fb752c096d848dc962008d90439)
| | * NetBSD needs LD_LIBRARY_PATHVolker Lendecke2008-02-201-0/+3
| | | | | | | | | | | | | | | (cherry picked from commit d64b19e77aa499c1ee1aaf788ddf3d6fd36253e4) (This used to be commit 4c77550d80b0cfc80bc2cac500fc27e0c43dad64)