Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-12-30 | lib/tevent: fix standalone make distclean realdistclean | Stefan Metzmacher | 1 | -2/+2 | |
Bug report by Brad Hards <bradh@frogmouth.net>. metze | |||||
2008-12-29 | s4:lib/tevent: rename structs | Stefan Metzmacher | 15 | -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-29 | lib/tevent: rename event_* => tevent_* in the header file | Stefan Metzmacher | 9 | -117/+198 | |
We have compat macros to keep the callers happy. metze | |||||
2008-12-24 | lib/tevent: libtevent will change a lot until it's version 1.0.0 | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2008-12-23 | Merge branch 'master' of ssh://git.samba.org/data/git/samba | Jelmer Vernooij | 1 | -5/+15 | |
2008-12-23 | Fix more compiler warnings. | Jelmer Vernooij | 1 | -0/+1 | |
2008-12-23 | Fix more compiler warnings in various places. | Jelmer Vernooij | 1 | -1/+1 | |
2008-12-23 | Install tevent_internal.h, as Samba 4 needs it. | Jelmer Vernooij | 1 | -0/+1 | |
2008-12-23 | Merge branch 'master' of ssh://git.samba.org/data/git/samba | Jelmer Vernooij | 12 | -109/+83 | |
2008-12-23 | Fix use of "time offset" parameter, and add test to make sure I don't break ↵ | Jelmer Vernooij | 3 | -1/+23 | |
it again :-) | |||||
2008-12-23 | pytevent: Add missing file. | Jelmer Vernooij | 1 | -0/+10 | |
2008-12-23 | Allow using external libtevent. | Jelmer Vernooij | 1 | -11/+0 | |
2008-12-23 | standalone: Use more variables, preparing to include these files from main | Jelmer Vernooij | 3 | -14/+17 | |
Samba 4 makefile. | |||||
2008-12-23 | Move Samba4-specific file out of common libtevent. | Jelmer Vernooij | 2 | -73/+1 | |
2008-12-22 | In gcc version 4.3.2 we get warnings for functions declared with | Jeremy Allison | 1 | -2/+10 | |
attribute warn_unused_result. Start to fix these. Jeremy. | |||||
2008-12-23 | ldb: Fix linking against tevent library (rather than events) | Jelmer Vernooij | 1 | -0/+1 | |
replace: Fix copyright for dlfcn.c. | |||||
2008-12-23 | pytalloc: Add some comments, use talloc object location in repr rather | Jelmer Vernooij | 1 | -5/+15 | |
than python object location. | |||||
2008-12-23 | python/tevent: Remove use of pytalloc.h. | Jelmer Vernooij | 1 | -8/+21 | |
2008-12-23 | Fix prefixing swig library directory with prefix. | Jelmer Vernooij | 1 | -2/+2 | |
2008-12-22 | Fix installation of standalone tevent Python module. | Jelmer Vernooij | 1 | -2/+1 | |
2008-12-22 | Fix standalone build of tdb python module, update ignores for standalone tdb. | Jelmer Vernooij | 1 | -4/+4 | |
2008-12-22 | Fix missing symbols issues when building with shared libraries. | Jelmer Vernooij | 1 | -2/+1 | |
2008-12-22 | Never build tevent modules as shared objects. | Jelmer Vernooij | 1 | -0/+4 | |
2008-12-22 | Remove unused Samba4-specific init functions for libtevent. | Jelmer Vernooij | 2 | -40/+0 | |
2008-12-21 | Fix various Python-related bugs. | Jelmer Vernooij | 1 | -0/+1 | |
2008-12-21 | Fix more introduced regressions in new bindings. | Jelmer Vernooij | 1 | -1/+1 | |
2008-12-21 | py: Fix initialisation of subtypes, fix segfaults. | Jelmer Vernooij | 1 | -2/+2 | |
2008-12-21 | Create and use convenience function for creating new talloc-wrapping Python ↵ | Jelmer Vernooij | 1 | -0/+2 | |
Objects, support subtypes of DCE/RPC interfaces properly | |||||
2008-12-20 | Merge branch 'master' of ssh://git.samba.org/data/git/samba | Jelmer Vernooij | 16 | -3537/+3426 | |
2008-12-20 | Fix tevent python module build as part of samba 4. | Jelmer Vernooij | 3 | -9/+13 | |
2008-12-20 | Stop using SWIG for ldb Python bindings. | Jelmer Vernooij | 9 | -3510/+118 | |
2008-12-20 | Fix standalone compilation of events library. | Jelmer Vernooij | 4 | -25/+23 | |
2008-12-20 | Add missing files for standalone build. | Jelmer Vernooij | 3 | -0/+3279 | |
2008-12-19 | Initial work using manual Python bindings for LDB, rather than ↵ | Jelmer Vernooij | 1 | -2/+2 | |
SWIG-generated ones. | |||||
2008-12-18 | Make sure to not close tdb database more than once. | Jelmer Vernooij | 1 | -2/+10 | |
2008-12-18 | Remove swig use from tdb standalone build. | Jelmer Vernooij | 3 | -14/+5 | |
2008-12-18 | Implement missing functions in pytdb. | Jelmer Vernooij | 2 | -34/+66 | |
2008-12-18 | Add simple manually written replacement for the tdb module. | Jelmer Vernooij | 6 | -4990/+453 | |
2008-12-17 | lib/util: make it possible to use debug.h with using xfile.h | Stefan Metzmacher | 2 | -2/+3 | |
metze | |||||
2008-12-17 | s4:lib/tevent: add lib/events/ compat and let things compile | Stefan Metzmacher | 18 | -101/+104 | |
metze | |||||
2008-12-17 | s4:lib/events: move to toplevel directory as lib/tevent/ | Stefan Metzmacher | 30 | -0/+7911 | |
This commit will not compile on its own. metze | |||||
2008-12-16 | s3/s4: Fix "shadows a global declaration" warning | Tim Prouty | 1 | -1/+1 | |
2008-12-16 | Added a simple tdb integrity check to tdbtool. The command "check" runs ↵ | Holger Hetterich | 1 | -1/+28 | |
traverse on the currently open tdb, and returns the number of entries if the integrity check is successful. | |||||
2008-12-16 | imported the tdb_repack() code from CTDB | Andrew Tridgell | 2 | -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-16 | make tdbbackup use transactions | Andrew Tridgell | 1 | -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-03 | s3: Change sockaddr util function names for consistency | Tim Prouty | 1 | -1/+1 | |
Also eliminates name conflicts with OneFS system libraries | |||||
2008-11-26 | Fix circular dependency error with autoconf 2.6.3. | Andreas Schneider | 1 | -0/+2 | |
Signed-off-by: Andreas Schneider <anschneider@suse.de> | |||||
2008-11-20 | s3/s4 build: Fix "might be unitialized" warning | Tim Prouty | 1 | -1/+1 | |
2008-11-20 | s3 build: Fix incomplete types warnings | Tim Prouty | 1 | -3/+2 | |
2008-11-18 | s3/s4 build: Fix execinfo and sasl build error when the libs/headers are in ↵ | Tim Prouty | 1 | -2/+12 | |
non-standard locations. These configure checks have the correct flags at configure time, so let's pass them through so they are used at compile time. |