| 1234567891011121314151617181920212223242526 |
- --- lib/cyrusdb_skiplist.c.orig Tue Apr 23 20:25:48 2002
- +++ lib/cyrusdb_skiplist.c Wed May 8 13:49:23 2002
- @@ -71,6 +71,11 @@
-
- #define PROB (0.5)
-
- +#ifdef __FreeBSD__
- +/* #define fdatasync(fd) fsync(fd) */
- +#define O_DSYNC 0
- +#endif
- +
- /*
- *
- * disk format; all numbers in network byte order
- --- et/com_err.c.dist Tue Jun 17 08:38:32 2003
- +++ et/com_err.c Tue Jun 17 08:38:46 2003
- @@ -50,7 +50,7 @@
- #include <string.h>
- #include "mit-sipb-copyright.h"
-
- -#if defined(HAVE_STDARG_H) || defined(_WINDOWS)
- +#if defined(HAVE_STDARG_H) || defined(__STDC__) || defined(_WINDOWS)
- #include <stdarg.h>
- #else
- #include <varargs.h>
|