Added configuration files for NetBSD3.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Thu, 16 Mar 2006 14:00:50 +0000 (14:00 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Thu, 16 Mar 2006 14:00:50 +0000 (14:00 +0000)
doc/doc-txt/ChangeLog
src/OS/Makefile-NetBSD3 [new file with mode: 0644]
src/OS/os.h-NetBSD3 [new file with mode: 0644]
src/scripts/os-type

index e281f6860c7332e918259cba888940955099ec7a..509c089fe0d607eb43f95a13dc93730e4dbc94a9 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.331 2006/03/16 12:25:24 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.332 2006/03/16 14:00:50 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -319,6 +319,8 @@ PH/63 Changed the macro HAVE_LOGIN_CAP (see PH/41 for this release above) to
       use login_cap.h, so on its own it isn't the distinguishing feature. The
       new name refers directly to the setclassresources() function.
 
+PH/65 Added configuration files for NetBSD3.
+
 
 Exim version 4.60
 -----------------
diff --git a/src/OS/Makefile-NetBSD3 b/src/OS/Makefile-NetBSD3
new file mode 100644 (file)
index 0000000..68ca52a
--- /dev/null
@@ -0,0 +1,27 @@
+# $Cambridge: exim/src/OS/Makefile-NetBSD3,v 1.1 2006/03/16 14:00:50 ph10 Exp $
+
+# Exim: OS-specific make file for NetBSD (ELF object format)
+
+CHOWN_COMMAND=/usr/sbin/chown
+CFLAGS=-O
+
+HAVE_SA_LEN=YES
+HAVE_IPV6=YES
+LIBS=-lcrypt -lm -lutil
+
+X11=/usr/X11R6
+XINCLUDE=-I$(X11)/include
+XLFLAGS=-L$(X11)/lib
+X11_LD_LIB=$(X11)/lib
+
+EXIWHAT_PS_ARG=-ax
+EXIWHAT_EGREP_ARG='/exim( |$$)'
+EXIWHAT_KILL_SIGNAL=-USR1
+
+# NetBSD always ships with Berkeley DB
+USE_DB=yes
+
+# NetBSD ELF linker needs a -R flag.
+XLFLAGS+=-Wl,-R$(X11)/lib/
+
+# End
diff --git a/src/OS/os.h-NetBSD3 b/src/OS/os.h-NetBSD3
new file mode 100644 (file)
index 0000000..3e72a09
--- /dev/null
@@ -0,0 +1,17 @@
+/* $Cambridge: exim/src/OS/os.h-NetBSD3,v 1.1 2006/03/16 14:00:50 ph10 Exp $
+
+/* Exim: OS-specific C header file for NetBSD */
+
+#define HAVE_BSD_GETLOADAVG
+#define HAVE_SETCLASSCONTEXT
+#define HAVE_MMAP
+#define HAVE_SYS_MOUNT_H
+#define HAVE_SYS_STATVFS_H
+#define SIOCGIFCONF_GIVES_ADDR
+
+typedef struct flock flock_t;
+
+#define os_strsignal strsignal
+#define OS_STRSIGNAL
+
+/* End */
index 8fe574d93da45f0eb20cd93b9275ed1034b9eac8..b4662bb0d873255502d6e5a2a4b5cf176301b071 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# $Cambridge: exim/src/scripts/os-type,v 1.4 2005/06/27 10:40:14 ph10 Exp $
+# $Cambridge: exim/src/scripts/os-type,v 1.5 2006/03/16 14:00:50 ph10 Exp $
 
 # Shell script to determine the operating system type. Some of the heuristics
 # herein have accumulated over the years and may not strictly be needed now,
@@ -83,6 +83,11 @@ linux)      os=Linux;;
 linux-*)    os=Linux;;
 Linux-*)    os=Linux;;
 netbsd*)    os=NetBSD;;
+NetBSD*)    version=`uname -r`
+            case "$version" in
+            3.*) os=NetBSD3;;
+            *)   os=NetBSD;;
+            esac;;
 openbsd*)   os=OpenBSD;;
 osf1)       os=OSF1;;
 qnx*)       os=QNX;;