ph10 2007/06/27 09:46:28 BST
Modified files:
exim-src/OS Makefile-NetBSD Makefile-NetBSD-a.out
os.h-NetBSD
Log:
NetBSD-specific configuration patches from David Brownlee.
Revision Changes Path
1.3 +1 -1 exim/exim-src/OS/Makefile-NetBSD
1.3 +1 -1 exim/exim-src/OS/Makefile-NetBSD-a.out
1.4 +6 -0 exim/exim-src/OS/os.h-NetBSD
Index: Makefile-NetBSD
===================================================================
RCS file: /home/cvs/exim/exim-src/OS/Makefile-NetBSD,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile-NetBSD 23 May 2005 16:58:55 -0000 1.2
+++ Makefile-NetBSD 27 Jun 2007 08:46:28 -0000 1.3
@@ -1,9 +1,9 @@
-# $Cambridge: exim/exim-src/OS/Makefile-NetBSD,v 1.2 2005/05/23 16:58:55 fanf2 Exp $
+# $Cambridge: exim/exim-src/OS/Makefile-NetBSD,v 1.3 2007/06/27 08:46:28 ph10 Exp $
# Exim: OS-specific make file for NetBSD (ELF object format)
CHOWN_COMMAND=/usr/sbin/chown
-CFLAGS=-O
+CFLAGS?=-O2
HAVE_SA_LEN=YES
HAVE_IPV6=YES
Index: Makefile-NetBSD-a.out
===================================================================
RCS file: /home/cvs/exim/exim-src/OS/Makefile-NetBSD-a.out,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Makefile-NetBSD-a.out 23 May 2005 16:58:55 -0000 1.2
+++ Makefile-NetBSD-a.out 27 Jun 2007 08:46:28 -0000 1.3
@@ -1,9 +1,9 @@
-# $Cambridge: exim/exim-src/OS/Makefile-NetBSD-a.out,v 1.2 2005/05/23 16:58:55 fanf2 Exp $
+# $Cambridge: exim/exim-src/OS/Makefile-NetBSD-a.out,v 1.3 2007/06/27 08:46:28 ph10 Exp $
# Exim: OS-specific make file for NetBSD (a.out/COFF object format)
CHOWN_COMMAND=/usr/sbin/chown
-CFLAGS=-O
+CFLAGS?=-O2
HAVE_SA_LEN=YES
HAVE_IPV6=YES
Index: os.h-NetBSD
===================================================================
RCS file: /home/cvs/exim/exim-src/OS/os.h-NetBSD,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- os.h-NetBSD 16 Mar 2006 12:25:24 -0000 1.3
+++ os.h-NetBSD 27 Jun 2007 08:46:28 -0000 1.4
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/exim-src/OS/os.h-NetBSD,v 1.3 2006/03/16 12:25:24 ph10 Exp $ */
+/* $Cambridge: exim/exim-src/OS/os.h-NetBSD,v 1.4 2007/06/27 08:46:28 ph10 Exp $ */
/* Exim: OS-specific C header file for NetBSD */
@@ -11,5 +11,11 @@
#define os_strsignal strsignal
#define OS_STRSIGNAL
+
+#include <sys/param.h>
+
+#if __NetBSD_Version__ >= 299000900
+#define HAVE_SYS_STATVFS_H
+#endif
/* End */