diff options
author | dholland <dholland@pkgsrc.org> | 2015-12-24 23:40:27 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-12-24 23:40:27 +0000 |
commit | 464043a3ed9ade6ac0f072a6de9f3ec908cb2066 (patch) | |
tree | 0d777827c84465fcc23259c5bacb024c2e97bd60 /security/pam-radius | |
parent | 6471a660c1e717d0bef6137036b8804f97ad687a (diff) | |
download | pkgsrc-464043a3ed9ade6ac0f072a6de9f3ec908cb2066.tar.gz |
Fix check-portability failure, seen in Joerg's build.
Diffstat (limited to 'security/pam-radius')
-rw-r--r-- | security/pam-radius/distinfo | 3 | ||||
-rw-r--r-- | security/pam-radius/patches/patch-configure | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/security/pam-radius/distinfo b/security/pam-radius/distinfo index e3704fcda2e..a3e8f8958bb 100644 --- a/security/pam-radius/distinfo +++ b/security/pam-radius/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2015/11/04 01:18:00 agc Exp $ +$NetBSD: distinfo,v 1.6 2015/12/24 23:40:27 dholland Exp $ SHA1 (pam_radius-1.4.0.tar.gz) = 161af24355b79736bb63ba1cf9e627f9ca6e1671 RMD160 (pam_radius-1.4.0.tar.gz) = 765bf1d81243504b6fccbab4032baba424dd8d33 SHA512 (pam_radius-1.4.0.tar.gz) = 3505e3de6777c4129a36d2dbd1ae1dbdc5fe46d752c58a6f2a325f77d6f41f7bd999b886f830c0631e51112f756a16e699f29daa428c2befc79cfab5e5b58624 Size (pam_radius-1.4.0.tar.gz) = 179458 bytes +SHA1 (patch-configure) = 50cdf0f778d3b48e8c06f9871dcf3ef0efa4cdee SHA1 (patch-src_pam__radius__auth.h) = e17931e1789636f6bccf80e51d2f875d36ed7681 diff --git a/security/pam-radius/patches/patch-configure b/security/pam-radius/patches/patch-configure new file mode 100644 index 00000000000..8c3692cd350 --- /dev/null +++ b/security/pam-radius/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2015/12/24 23:40:27 dholland Exp $ + +Fix shell conditional. + +--- configure~ 2014-12-17 22:00:59.000000000 +0000 ++++ configure +@@ -5261,7 +5261,7 @@ fi + HOSTINFO=$host + + +-if test "x$werror" == "xyes"; then ++if test "x$werror" = "xyes"; then + CFLAGS="-Werror $CFLAGS" + fi + |