diff options
author | jperkin <jperkin@pkgsrc.org> | 2014-09-25 14:14:47 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2014-09-25 14:14:47 +0000 |
commit | 07c6129f624a351b1103472e8273292b593c436b (patch) | |
tree | 4f3d28b5a8c60c5a99b9a5a41045ef8595d58f1b /mail/smtpfeed | |
parent | bcff414f875d4073e9a145f4d6e252c116eeaa14 (diff) | |
download | pkgsrc-07c6129f624a351b1103472e8273292b593c436b.tar.gz |
Fix IPv6 build on SunOS 5.10 and newer.
Diffstat (limited to 'mail/smtpfeed')
-rw-r--r-- | mail/smtpfeed/distinfo | 3 | ||||
-rw-r--r-- | mail/smtpfeed/patches/patch-configure | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/mail/smtpfeed/distinfo b/mail/smtpfeed/distinfo index 87c3304e092..95f1bb5d161 100644 --- a/mail/smtpfeed/distinfo +++ b/mail/smtpfeed/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2012/07/10 09:09:11 mef Exp $ +$NetBSD: distinfo,v 1.9 2014/09/25 14:14:47 jperkin Exp $ SHA1 (smtpfeed-1.20.tar.gz) = f055984526865200339557e5fa809f968decbcfd RMD160 (smtpfeed-1.20.tar.gz) = aa3c586f2c5b2907caa0d7a50257c4e5273cc25d @@ -15,3 +15,4 @@ SHA1 (patch-aj) = f26af3988350e0df29fa7e97ea7c308ac6699125 SHA1 (patch-ak) = 206286eb6872876fc4b67a6ad413229124b8bb80 SHA1 (patch-al) = 9a4674777b1a7fef6f29c6e5aa1b7e04c1eb2f87 SHA1 (patch-am) = 63c35492d1cd9f01e9de901b7816e6f5d3e28c91 +SHA1 (patch-configure) = 61f92773f797660e7b51f6b70ea88f3f949c5191 diff --git a/mail/smtpfeed/patches/patch-configure b/mail/smtpfeed/patches/patch-configure new file mode 100644 index 00000000000..f866c19cb2e --- /dev/null +++ b/mail/smtpfeed/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2014/09/25 14:14:47 jperkin Exp $ + +Fix IPv6 SunOS build on 5.10+ + +--- configure.orig 2003-08-20 05:14:22.000000000 +0000 ++++ configure +@@ -1458,7 +1458,7 @@ rm -f conftest* + usys=`uname -s`; + if test "$usys" = "SunOS"; then + case `uname -r` in +- 5.8*|5.9*) ++ 5.8*|5.9*|5.1[0-9]) + ipv6type=$i + IPV6_DEF="-DINET6" + ;; |