Removed NetBSD3 support as no longer needed. Fixes: #908
authorNigel Metheringham <nigel@exim.org>
Fri, 13 Nov 2009 12:18:35 +0000 (12:18 +0000)
committerNigel Metheringham <nigel@exim.org>
Fri, 13 Nov 2009 12:18:35 +0000 (12:18 +0000)
doc/doc-txt/ChangeLog
src/OS/Makefile-NetBSD3 [deleted file]
src/OS/os.h-NetBSD3 [deleted file]
src/scripts/os-type

index 0d6e81facab3bf9bbb19f8c629858da5d4b64393..5babd1e7e99a8fbbc3326d58b6bd5c83d6329926 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.591 2009/11/12 13:02:16 nm4 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.592 2009/11/13 12:18:35 nm4 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -153,7 +153,9 @@ NM/35 Bugzilla 39: Base64 decode bug fixes
 
 NM/36 Bugzilla 909: Correct connect() call in dcc code
 
-NM/36 Bugzilla 910: Correct issue with relaxed/simple handling
+NM/37 Bugzilla 910: Correct issue with relaxed/simple handling
+
+NM/38 Bugzilla 908: Removed NetBSD3 support as no longer needed
 
 
 Exim version 4.69
diff --git a/src/OS/Makefile-NetBSD3 b/src/OS/Makefile-NetBSD3
deleted file mode 100644 (file)
index 68ca52a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-# $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
deleted file mode 100644 (file)
index 3e72a09..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/* $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 b4662bb0d873255502d6e5a2a4b5cf176301b071..7894de6403ab6101da89163f4f41646abc9bd942 100755 (executable)
@@ -1,5 +1,5 @@
 #! /bin/sh
-# $Cambridge: exim/src/scripts/os-type,v 1.5 2006/03/16 14:00:50 ph10 Exp $
+# $Cambridge: exim/src/scripts/os-type,v 1.6 2009/11/13 12:18:35 nm4 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,11 +83,7 @@ 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;;
+NetBSD*)    os=NetBSD;;
 openbsd*)   os=OpenBSD;;
 osf1)       os=OSF1;;
 qnx*)       os=QNX;;