nm4 2009/11/13 12:18:35 GMT
Modified files:
exim-doc/doc-txt ChangeLog
exim-src/scripts os-type
Removed files:
exim-src/OS Makefile-NetBSD3 os.h-NetBSD3
Log:
Removed NetBSD3 support as no longer needed. Fixes: #908
Revision Changes Path
1.592 +3 -1 exim/exim-doc/doc-txt/ChangeLog
1.2 +0 -27 exim/exim-src/OS/Makefile-NetBSD3 (dead)
1.2 +0 -17 exim/exim-src/OS/os.h-NetBSD3 (dead)
1.6 +1 -5 exim/exim-src/scripts/os-type
Index: ChangeLog
===================================================================
RCS file: /home/cvs/exim/exim-doc/doc-txt/ChangeLog,v
retrieving revision 1.591
retrieving revision 1.592
diff -u -r1.591 -r1.592
--- ChangeLog 12 Nov 2009 13:02:16 -0000 1.591
+++ ChangeLog 13 Nov 2009 12:18:35 -0000 1.592
@@ -1,4 +1,4 @@
-$Cambridge: exim/exim-doc/doc-txt/ChangeLog,v 1.591 2009/11/12 13:02:16 nm4 Exp $
+$Cambridge: exim/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/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
Index: os-type
===================================================================
RCS file: /home/cvs/exim/exim-src/scripts/os-type,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- os-type 16 Mar 2006 14:00:50 -0000 1.5
+++ os-type 13 Nov 2009 12:18:35 -0000 1.6
@@ -1,5 +1,5 @@
#! /bin/sh
-# $Cambridge: exim/exim-src/scripts/os-type,v 1.5 2006/03/16 14:00:50 ph10 Exp $
+# $Cambridge: exim/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;;
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;;