summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/kdb/ChangeLog5
-rw-r--r--src/lib/kdb/kdb_dbm.c6
2 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/kdb/ChangeLog b/src/lib/kdb/ChangeLog
index 4341b9964..3839722ce 100644
--- a/src/lib/kdb/ChangeLog
+++ b/src/lib/kdb/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 22 10:13:25 1994 (tytso@rsx-11)
+
+ * kdb_dbm.c: Don't need to define POSIX_FILE_LOCKS; just include
+ config.h instead.
+
Wed Oct 19 12:15:36 1994 Theodore Y. Ts'o (tytso@dcl)
* Makefile.in: make install obey $(DESTDIR) completely
diff --git a/src/lib/kdb/kdb_dbm.c b/src/lib/kdb/kdb_dbm.c
index a8e3366bd..383d6d1b6 100644
--- a/src/lib/kdb/kdb_dbm.c
+++ b/src/lib/kdb/kdb_dbm.c
@@ -37,12 +37,6 @@
#include <sys/types.h>
#include <utime.h>
-#ifdef _POSIX_VERSION
- /* Is there a better way to decide whether or not we should use flock */
- /* vs. fcntl. Example: broken SunOS tmpfs.... */
-#define POSIX_FILE_LOCKS
-#endif
-
#if defined (POSIX_FILE_LOCKS) && !defined(unicos61)
#include <fcntl.h>
#endif