summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r22762: Some ldb_map changes:Jelmer Vernooij1-1/+5
* Change license to LGPL, so it can be used by non-Samba users of LDB (cleared with Martin as well). * Include ldb_map in standalone build. * Move ldb_map to its own directory (This used to be commit a90202abca26c0da5425a2f3dd8494077c3290fd)
2007-10-10r22687: use DESTDIR.Jelmer Vernooij1-6/+6
(This used to be commit 0b34da929f2a482c6470a18a6b365634cb1f5b22)
2007-10-10r22600: Update bzr ignores, put right version in .pc files, prepare for ↵Jelmer Vernooij1-3/+6
support of system versions of tdb, talloc. (This used to be commit 9b991ce9ca28b3d88c778305ec5f681506162637)
2007-10-10r22598: Simplify includes for replace.Jelmer Vernooij1-1/+1
(This used to be commit e72cec408e832e0f6ce05c38febdd56de501dbf7)
2007-10-10r22596: Set _CFLAGS variables rather than putting knowledge in the ldb Makefile.Jelmer Vernooij1-2/+11
This should make it easier to allow use of system tdb or talloc libs using pkg-config. (This used to be commit a3ec90a2635d47e5c073e873c15daab4a8ef5400)
2007-10-10r19743: merge from samba3:Stefan Metzmacher1-1/+1
remove old unused schema module metze (This used to be commit 3c16951b0d88013b34a0213ced79087653713ddf)
2007-10-10r19714: - add an explicit default target (needs to be the first target in ↵Stefan Metzmacher1-1/+3
the Makefile) - let 'make nss' work alone metze (This used to be commit 5685b6c8a267251bb21f2cc0e768b00f615e0f1b)
2007-10-10r19459: Do not build nss by default (it probably works only on linux)Simo Sorce1-1/+6
Fix warning with standalone.sh if build exists (This used to be commit d74fac574067ff2f3918ad435df2c2352e4b2ef7)
2007-10-10r19456: Add an example application for ldb using the tdb backendSimo Sorce1-3/+10
(This used to be commit 778198f279b374222c737e5eda1c47efc2dce39c)
2007-10-10r19123: - pass LDFLAGS from configure to MakefileStefan Metzmacher1-1/+1
which should fix the build on Tru64 in the build farm. Thanks to Bjoern Jacke for finding this! metze (This used to be commit 165722a16cf9b8e3f352ed44285cdae0fba66536)
2007-10-10r18539: 'make distclean' should delete config.cacheAndrew Tridgell1-1/+1
(This used to be commit 5a8becb1be1b41b4fecf9f9f47a60eed5f77c264)
2007-10-10r18437: added a 'make valgrindtest' target for ldbAndrew Tridgell1-0/+3
(This used to be commit 4c33c6bb97f3b25b611c476be4c914031e55e4dc)
2007-10-10r18166: Fix build with external popt.Jelmer Vernooij1-1/+1
(This used to be commit b34310029a02402bf5f5bd8690a67a3d746906ee)
2007-10-10r18161: Fix LDB build after popt changes.Jelmer Vernooij1-1/+1
(This used to be commit 849fa935401b8d846e5e9c92267dc1cbabd3ae55)
2007-10-10r18150: fix make *cleanStefan Metzmacher1-10/+8
metze (This used to be commit e354cd0fae7ad87be30a820954dc840271301177)
2007-10-10r18143: the 'showflags' convention from Samba is useful for the other packagesAndrew Tridgell1-1/+6
(This used to be commit a4d1f1d2229e1a0b1523bf14fab59278207abbc0)
2007-10-10r18109: move ldb to use the same build methodsAndrew Tridgell1-4/+4
(This used to be commit 28dcbb512fecd825428c5d5f343ec16e4a6906f9)
2007-10-10r18031: Merge my replace fixes:Jelmer Vernooij1-16/+8
* libreplace can now build stand-alone * add stub testsuite for libreplace * make talloc/tdb/ldb use libreplace (This used to be commit fe7ca4b1454e01a33ed0d53791ebffdd349298b4)
2007-10-10r17960: try to use gmake if present on IRIXStefan Metzmacher1-0/+2
metze (This used to be commit 18b4ae591a3a137dd25edd16a574e489cd5552bf)
2007-10-10r17747: ldb's make test should not try to install somethingStefan Metzmacher1-2/+2
metze (This used to be commit ccf9ad0d2ff8388dd76a36426657773a59e6c316)
2007-10-10r17746: the automatic archive creation in make breaks on 3 platforms. Lets tryAndrew Tridgell1-2/+4
manual archives and see if they work a bit better .... (This used to be commit 15ec8c3741f89ac4d6f0cd794dc916ee37d883cc)
2007-10-10r17738: solving the seemingly trivial problem of timegm() being missing onAndrew Tridgell1-4/+6
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 (This used to be commit c2f6c217fb4a5c84499246480f00df40b0711074)
2007-10-10r17735: a (probably useless) attempt to workaround stupidity in HPs version ofAndrew Tridgell1-1/+1
make (This used to be commit b85b1f5926789c0d6f7cad5f6b8dc4992cca5a13)
2007-10-10r17733: doxygen is way too noisy to build every time, and it doesn't doAndrew Tridgell1-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 .... (This used to be commit e9ab8d9f4820c03ee6023bc5dd586f4b5643aa2f)
2007-10-10r17731: try to cope with freebsd handling of .a dependenciesAndrew Tridgell1-1/+1
(This used to be commit 1ad1d5f37e0915e5e477b99ef16fc82a01b82708)
2007-10-10r17729: remove the dependence on an internet connection for buildingAndrew Tridgell1-18/+8
standalone ldb by only running xsltproc if we can find a local copy of the required stylesheets (This used to be commit 16be09e0d6bd2c9c21f9cf0291dabf661a9a3797)
2007-10-10r17725: VPATH and builds out of the source directory causes problems with theAndrew Tridgell1-1/+1
AIX 5.1 version of make. Putting a direct dependency on $(OBJS) works around this, and should be harmless on other systems (This used to be commit 6a7182b599d43d2da636dfb68547f0f4aea4050e)
2007-10-10r17721: fixed the dlopen and MODULESDIR handling in the standalone buildAndrew Tridgell1-1/+2
(This used to be commit a40e8c210a27a88e01b023c8b6d298e271c147d7)
2007-10-10r17706: remove the dependence on gnu make in the standalone buildAndrew Tridgell1-61/+8
(This used to be commit 07fa357f3f7251859f8afb6f2b0488b3718b0474)
2007-10-10r17702: test for gcc, and only enable gcc flags if trueAndrew Tridgell1-2/+1
(This used to be commit 6495620d1819a50b79c77258ced9d0cadd25e129)
2007-10-10r17701: doxygen (if installed!) needs to be run in the src directoryAndrew Tridgell1-1/+1
(This used to be commit bd1bd1c5ce52e9399461041e11cc30c93ba356a9)
2007-10-10r17696: attempt to allow ldb to use an external popt directory, so we canAndrew Tridgell1-2/+3
point it at the popt sources in the samba source tree when building in the build farm (This used to be commit 13e14e0f8decbb7f3bafed9d980950d825a985e6)
2007-10-10r17695: added installcheck targetAndrew Tridgell1-1/+3
(This used to be commit 7cca1f83f40106707c00edf612796451536d73e5)
2007-10-10r17693: only install man pages if we have managed to generate them withAndrew Tridgell1-2/+2
xsltproc (This used to be commit 3e48177dd138d835766cba304d266fd30a87ebef)
2007-10-10r17692: - don't try and run ldap tests unless we have slapdAndrew Tridgell1-5/+6
- fix manpages install (This used to be commit 9bc751d1f18be1b03e47412e94abe6390f752f98)
2007-10-10r17689: build works, this should fix install ....Andrew Tridgell1-1/+2
(This used to be commit 9a7c1df956ad2e5abaa33b4c808cc1379c2d1c67)
2007-10-10r17688: the commit/test cycle for getting this to work in the build farm sureAndrew Tridgell1-1/+1
is tedious! nearly there I hope ..... (This used to be commit d0412765bade27acdd5cc03d7d527fe7ddd1fb11)
2007-10-10r17687: remove circular dependencyAndrew Tridgell1-2/+2
(This used to be commit b12fd256ff827f45f24c56edbc6f44248ba9b9a3)
2007-10-10r17679: - fix 'make test-ldap' to skip ldb specialsAndrew Tridgell1-36/+40
- allow ldb to be built in a separate build directory, using: /some/path/to/ldb/configure make this will make it much easier to put ldb in the build farm without interfering with the build farm builds of tdb and talloc (This used to be commit 580ed6730d33bad62e9799a38377c40f2852ae89)
2007-10-10r17582: Fix dependenies for oLschema2ldif.Andrew Bartlett1-1/+1
Andrew Bartlett (This used to be commit 113ef0132037f3e3db61f259eee903a4584219f7)
2007-10-10r17580: Add a new tools to convert back from AD-like schema to OpenLDAP.Andrew Bartlett1-1/+1
Add attribute syntax mapping to the existing OpenLDAP -> AD tool. Andrew Bartlett (This used to be commit ba1c652bae700a82acde166e70035d61c320e233)
2007-10-10r16089: Make doxygen target work if $DOXYGEN variable is empty.Tim Potter1-1/+1
(This used to be commit 8f44d0a2d66751ebc648550eec1ea051724b750c)
2007-10-10r14590: Fix ldb standalone build...Jelmer Vernooij1-1/+1
(This used to be commit 3a6ed4e2df26936202cba8f7739ed39e0d119d1a)
2007-10-10r13650: Install manpages when building standaloneJelmer Vernooij1-0/+4
(This used to be commit 65128577a9909872bebb576f548668600352a645)
2007-10-10r13324: From now on check attribute names obey rfc2251Simo Sorce1-1/+1
Also add a way to provide utf8 compliant functions by registering them with ldb_set_utf8_fns() Next comes code to register samba internal utf8 functions. Simo. (This used to be commit ac9b8a41ffca8e06c5e849d544d3203a665b8e0d)
2007-10-10r13181: Fix standalone ldb buildJelmer Vernooij1-1/+1
(This used to be commit e9059ea0c56c1fd9886eb038df5455efe11962f8)
2007-10-10r13064: Add 'tags' target to LDB's makefileJelmer Vernooij1-0/+3
(This used to be commit 8195e4f8566ecc71c801aec6638869c494e6bbb4)
2007-10-10r12850: - add Doxygen comments to ldbStefan Metzmacher1-1/+6
- 'make doxygen' generated the api documentation under apidocs/ Many thanks to Brad Hards <bradh@frogmouth.net> for the patches! metze (This used to be commit e98d483174c555366e62dd27600e6b242cab7a7f)
2007-10-10r12847: add some ldb examples from Brad Hards (bradh@frogmouth.net)Stefan Metzmacher1-3/+9
metze (This used to be commit 4d32d50ccd8bd0bfb3e2d6f5aee23bce38abbc03)
2007-10-10r12846: some fixesStefan Metzmacher1-7/+13
metze (This used to be commit bf6065b11fd84454f8bc881ff96fb1846a59405b)