Don't need to define POSIX_FILE_LOCKS; just include config.h instead
authorTheodore Tso <tytso@mit.edu>
Mon, 24 Oct 1994 18:29:22 +0000 (18:29 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 24 Oct 1994 18:29:22 +0000 (18:29 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4553 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/ChangeLog
src/lib/kdb/kdb_dbm.c

index 4341b9964c9c8e44d98633ab3bf0e0719e740f9a..3839722ce5c09b347d3b9a1b1bed7131e1e67d08 100644 (file)
@@ -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
index a8e3366bd0ff6903b4ef895fab4e507ade3b440a..383d6d1b66976cba320fd9445f1bd788ca4761d1 100644 (file)
 #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