summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2008-12-31Fix all warnings in source3 with gcc4.3.Jeremy Allison1-1/+3
Jeremy.
2008-12-30s3/s4: Move CONST_DISCARD into lib/util so it's available from s3 and s4Tim Prouty1-0/+2
2008-12-30lib/tevent: fix standalone make distclean realdistcleanStefan Metzmacher1-2/+2
Bug report by Brad Hards <bradh@frogmouth.net>. metze
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher15-153/+150
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
2008-12-29lib/tevent: rename event_* => tevent_* in the header fileStefan Metzmacher9-117/+198
We have compat macros to keep the callers happy. metze
2008-12-24lib/tevent: libtevent will change a lot until it's version 1.0.0Stefan Metzmacher1-1/+1
metze
2008-12-23Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij1-5/+15
2008-12-23Fix more compiler warnings.Jelmer Vernooij1-0/+1
2008-12-23Fix more compiler warnings in various places.Jelmer Vernooij1-1/+1
2008-12-23Install tevent_internal.h, as Samba 4 needs it.Jelmer Vernooij1-0/+1
2008-12-23Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij12-109/+83
2008-12-23Fix use of "time offset" parameter, and add test to make sure I don't break ↵Jelmer Vernooij3-1/+23
it again :-)
2008-12-23pytevent: Add missing file.Jelmer Vernooij1-0/+10
2008-12-23Allow using external libtevent.Jelmer Vernooij1-11/+0
2008-12-23standalone: Use more variables, preparing to include these files from mainJelmer Vernooij3-14/+17
Samba 4 makefile.
2008-12-23Move Samba4-specific file out of common libtevent.Jelmer Vernooij2-73/+1
2008-12-22In gcc version 4.3.2 we get warnings for functions declared withJeremy Allison1-2/+10
attribute warn_unused_result. Start to fix these. Jeremy.
2008-12-23ldb: Fix linking against tevent library (rather than events)Jelmer Vernooij1-0/+1
replace: Fix copyright for dlfcn.c.
2008-12-23pytalloc: Add some comments, use talloc object location in repr ratherJelmer Vernooij1-5/+15
than python object location.
2008-12-23python/tevent: Remove use of pytalloc.h.Jelmer Vernooij1-8/+21
2008-12-23Fix prefixing swig library directory with prefix.Jelmer Vernooij1-2/+2
2008-12-22Fix installation of standalone tevent Python module.Jelmer Vernooij1-2/+1
2008-12-22Fix standalone build of tdb python module, update ignores for standalone tdb.Jelmer Vernooij1-4/+4
2008-12-22Fix missing symbols issues when building with shared libraries.Jelmer Vernooij1-2/+1
2008-12-22Never build tevent modules as shared objects.Jelmer Vernooij1-0/+4
2008-12-22Remove unused Samba4-specific init functions for libtevent.Jelmer Vernooij2-40/+0
2008-12-21Fix various Python-related bugs.Jelmer Vernooij1-0/+1
2008-12-21Fix more introduced regressions in new bindings.Jelmer Vernooij1-1/+1
2008-12-21py: Fix initialisation of subtypes, fix segfaults.Jelmer Vernooij1-2/+2
2008-12-21Create and use convenience function for creating new talloc-wrapping Python ↵Jelmer Vernooij1-0/+2
Objects, support subtypes of DCE/RPC interfaces properly
2008-12-20Merge branch 'master' of ssh://git.samba.org/data/git/sambaJelmer Vernooij16-3537/+3426
2008-12-20Fix tevent python module build as part of samba 4.Jelmer Vernooij3-9/+13
2008-12-20Stop using SWIG for ldb Python bindings.Jelmer Vernooij9-3510/+118
2008-12-20Fix standalone compilation of events library.Jelmer Vernooij4-25/+23
2008-12-20Add missing files for standalone build.Jelmer Vernooij3-0/+3279
2008-12-19Initial work using manual Python bindings for LDB, rather than ↵Jelmer Vernooij1-2/+2
SWIG-generated ones.
2008-12-18Make sure to not close tdb database more than once.Jelmer Vernooij1-2/+10
2008-12-18Remove swig use from tdb standalone build.Jelmer Vernooij3-14/+5
2008-12-18Implement missing functions in pytdb.Jelmer Vernooij2-34/+66
2008-12-18Add simple manually written replacement for the tdb module.Jelmer Vernooij6-4990/+453
2008-12-17lib/util: make it possible to use debug.h with using xfile.hStefan Metzmacher2-2/+3
metze
2008-12-17s4:lib/tevent: add lib/events/ compat and let things compileStefan Metzmacher18-101/+104
metze
2008-12-17s4:lib/events: move to toplevel directory as lib/tevent/Stefan Metzmacher30-0/+7911
This commit will not compile on its own. metze
2008-12-16s3/s4: Fix "shadows a global declaration" warningTim Prouty1-1/+1
2008-12-16Added a simple tdb integrity check to tdbtool. The command "check" runs ↵Holger Hetterich1-1/+28
traverse on the currently open tdb, and returns the number of entries if the integrity check is successful.
2008-12-16imported the tdb_repack() code from CTDBAndrew Tridgell2-1/+93
The tdb_repack() function repacks a TDB so that it has a single freelist entry. The file doesn't shrink, but it does remove all freelist fragmentation. This code originated in the CTDB vacuuming code, but will now be used in ldb to cope with fragmentation from re-indexing
2008-12-16make tdbbackup use transactionsAndrew Tridgell1-6/+19
tdbbackup was originally written before we had transactions, and it attempted to use its own fsync() calls to make it safe. Now that we have transactions we can do it in a much safer (and faster!) fashion
2008-12-03s3: Change sockaddr util function names for consistencyTim Prouty1-1/+1
Also eliminates name conflicts with OneFS system libraries
2008-11-26Fix circular dependency error with autoconf 2.6.3.Andreas Schneider1-0/+2
Signed-off-by: Andreas Schneider <anschneider@suse.de>
2008-11-20s3/s4 build: Fix "might be unitialized" warningTim Prouty1-1/+1