summaryrefslogtreecommitdiff
blob: bf2659a7bf14cb6ed6fd848cf7386e37df3b8409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
--- sendmail-8.12.2/devtools/OS/Linux	Tue Feb 19 15:23:34 2002
+++ sendmail-8.12.2/devtools/OS/Linux	Tue Feb 19 15:24:05 2002
@@ -1,7 +1,7 @@
 #	$Id: sendmail-8.12.2-makemapman.patch,v 1.1 2002/06/10 01:03:48 g2boojum Exp $
 define(`confDEPEND_TYPE', `CC-M')
 define(`confSM_OS_HEADER', `sm_os_linux')
-define(`confMANROOT', `/usr/man/man')
+define(`confMANROOT', `/usr/share/man/man')
 define(`confLIBS', `-ldl')
 define(`confEBINDIR', `/usr/sbin')
 APPENDDEF(`confLIBSEARCH', `crypt nsl')
@@ -11,6 +11,8 @@
 define(`confMTLDOPTS', `-lpthread')
 define(`confLDOPTS_SO', `-shared')
 define(`confSONAME',`-soname')
+define('confSBINGRP', 'mail')
+define('confSBINMODE', '6755')
 
 ifelse(confBLDVARIANT, `DEBUG',
 dnl Debug build
--- sendmail-8.12.2/makemap/makemap.8	Tue Oct  9 23:23:02 2001
+++ sendmail-8.12.2/makemap/makemap.8	Tue Feb 19 15:23:34 2002
@@ -50,12 +50,6 @@
 parameter.  
 They may be
 .TP
-dbm
-DBM format maps.  
-This requires the 
-ndbm(3) 
-library.
-.TP
 btree
 B-Tree format maps.  
 This requires the new Berkeley DB 
--- sendmail-8.12.2/sendmail/daemon.c	Mon Dec 31 14:46:38 2001
+++ sendmail-8.12.2/sendmail/daemon.c	Tue Feb 19 15:23:34 2002
@@ -3418,7 +3418,7 @@
 
 	/* get result */
 	p = &ibuf[0];
-	nleft = sizeof ibuf - 1;
+	nleft = sizeof(ibuf) - 1;
 	while ((i = read(s, p, nleft)) > 0)
 	{
 		p += i;
--- sendmail-8.12.2/cf/cf/Build	Mon Mar  1 21:37:12 1999
+++ sendmail-8.12.2/cf/cf/Build	Tue Feb 19 15:23:34 2002
@@ -18,7 +18,7 @@
 SMROOT=${SMROOT-../..}
 BUILDTOOLS=${BUILDTOOLS-$SMROOT/devtools}
 
-M4=`sh $BUILDTOOLS/bin/find_m4.sh`
+M4=/usr/bin/m4
 ret=$?
 if [ $ret -ne 0 ]
 then
--- sendmail-8.12.2/rmail/rmail.c	Tue Sep 18 17:45:29 2001
+++ sendmail-8.12.2/rmail/rmail.c	Tue Feb 19 15:23:34 2002
@@ -276,7 +276,6 @@
 	args[i++] = _PATH_SENDMAIL;	/* Build sendmail's argument list. */
 	args[i++] = "-G";		/* relay submission */
 	args[i++] = "-oee";		/* No errors, just status. */
-	args[i++] = "-odq";		/* Queue it, don't try to deliver. */
 	args[i++] = "-oi";		/* Ignore '.' on a line by itself. */
 
 	/* set from system and protocol used */