freebsd-ports/mail/cclient/files/patch-aa
Dirk Froemberg 24ca44dfa7 * Set maintainership to Anders Nordby <anders@fix.no>.
* Add two more master sites that I control myself, to bring some much
  needed stability there too (UW has been removing snapshots without
  putting them in the old dir).
* Use PAM by default.
* Remove some unnecessary linking parameters.

Submitted by:	Anders Nordby <anders@fix.no>
2001-04-16 18:48:21 +00:00

22 lines
482 B
Plaintext

--- src/osdep/unix/os_bsi.h.orig Wed Apr 11 10:53:03 2001
+++ src/osdep/unix/os_bsi.h Wed Apr 11 10:55:32 2001
@@ -22,7 +22,18 @@
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
+
+/*
+ * FreeBSD v3.x and onward whines about <sys/dir.h> being obsolete, so switch
+ * to POSIX semantics.
+ */
+#if __FreeBSD__ >= 3
+#include <dirent.h>
+#define direct dirent
+#else
#include <sys/dir.h>
+#endif
+
#include <fcntl.h>
#include <syslog.h>
#include <sys/file.h>