summaryrefslogtreecommitdiff
path: root/mail/bsmtp/files/patch-configure
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2002-02-23 16:25:24 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2002-02-23 16:25:24 +0000
commit212d13bf551cc019dabdd20c20db8478cb5e51ed (patch)
tree7e5d7d338cf7b5cd85358794dba47c48d40765f3 /mail/bsmtp/files/patch-configure
parentUpdate to 0.1.5. (My patches have been integrated) (diff)
- Provide explicit support for sendmail 8.10 (same as 8.9), 8.11
(new), and 8.12 (new). - libexec/* -> libexec/bsmtp/*
Diffstat (limited to 'mail/bsmtp/files/patch-configure')
-rw-r--r--mail/bsmtp/files/patch-configure29
1 files changed, 29 insertions, 0 deletions
diff --git a/mail/bsmtp/files/patch-configure b/mail/bsmtp/files/patch-configure
new file mode 100644
index 000000000000..096a7de0a43f
--- /dev/null
+++ b/mail/bsmtp/files/patch-configure
@@ -0,0 +1,29 @@
+
+$FreeBSD$
+
+--- configure.orig Fri Feb 22 17:30:58 2002
++++ configure Fri Feb 22 17:32:13 2002
+@@ -41,6 +41,10 @@
+ "batcher",
+ "batcher.c",
+ "bsmtp.c",
++ "bsmtp.m4.8.12",
++ "bsmtp.m4.8.11",
++ "bsmtp.m4.8.10",
++ "bsmtp.m4.8.9",
+ "bsmtp.m4.8.9",
+ "bsmtp.m4.8.8",
+ "bsmtp.m4.8.7",
+@@ -198,6 +202,12 @@
+ $default[$i] = '8.8';
+ } elsif ($value{'@SENDMAILVERS@'} =~ /^\s*8\.9(\..*)?\s*$/) {
+ $default[$i] = '8.9';
++ } elsif ($value{'@SENDMAILVERS@'} =~ /^\s*8\.10(\..*)?\s*$/) {
++ $default[$i] = '8.10';
++ } elsif ($value{'@SENDMAILVERS@'} =~ /^\s*8\.11(\..*)?\s*$/) {
++ $default[$i] = '8.11';
++ } elsif ($value{'@SENDMAILVERS@'} =~ /^\s*8\.12(\..*)?\s*$/) {
++ $default[$i] = '8.12';
+ } else {
+ $default[$i] = ''; # Will not be installed
+ }