summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorkamil <kamil>2016-04-17 15:33:13 +0000
committerkamil <kamil>2016-04-17 15:33:13 +0000
commitd38c4db82060b9555e94f6405ef38b58128c557c (patch)
tree80ef74f070e9e8f70d9c7fb7dc633a5997c1dd03 /security
parentf539a09bdf5f6fa86932207f910842c27eceade2 (diff)
downloadpkgsrc-d38c4db82060b9555e94f6405ef38b58128c557c.tar.gz
Fix build on recent NetBSD-current
The RTM_RESOLVE symbol has been removed after the following change in src/sys/net/route.h: revision 1.98 date: 2016-04-04 09:37:07 +0200; author: ozaki-r; state: Exp; lines: +8 -6; commitid: r0chxU5ZkTdAqh1z; Separate nexthop caches from the routing table Bump PKGREVISION to 1
Diffstat (limited to 'security')
-rw-r--r--security/mit-krb5/Makefile3
-rw-r--r--security/mit-krb5/distinfo4
-rw-r--r--security/mit-krb5/patches/patch-lib_apputils_net-server.c16
3 files changed, 17 insertions, 6 deletions
diff --git a/security/mit-krb5/Makefile b/security/mit-krb5/Makefile
index 081bdb1202e..35e5a54c114 100644
--- a/security/mit-krb5/Makefile
+++ b/security/mit-krb5/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.89 2016/03/18 19:08:39 tez Exp $
+# $NetBSD: Makefile,v 1.90 2016/04/17 15:33:13 kamil Exp $
DISTNAME= krb5-1.14.1
PKGNAME= mit-${DISTNAME}
+PKGREVISION= 1
CATEGORIES= security
MASTER_SITES= http://web.mit.edu/kerberos/dist/krb5/${PKGVERSION_NOREV:R}/
EXTRACT_SUFX= .tar.gz
diff --git a/security/mit-krb5/distinfo b/security/mit-krb5/distinfo
index 27e1598338a..0ee9539126b 100644
--- a/security/mit-krb5/distinfo
+++ b/security/mit-krb5/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.57 2016/03/15 15:22:38 tez Exp $
+$NetBSD: distinfo,v 1.58 2016/04/17 15:33:13 kamil Exp $
SHA1 (krb5-1.14.1.tar.gz) = f12dc3b8630fd1fefb7058cd782754489377308b
RMD160 (krb5-1.14.1.tar.gz) = 3e32a0cd365474deeeb563831b7e408f9158b36a
@@ -19,7 +19,7 @@ SHA1 (patch-config_shlib.conf) = c47a647307e7d883e7c22528b7b0f5ad038cbcb3
SHA1 (patch-configure.in) = 6675fa171d6e21ad71a58ce410d3b1ecb45add4d
SHA1 (patch-include_osconf.hin) = d31a8164f417bc31a787c8e16d1bd24f27b7140d
SHA1 (patch-lib_apputils_Makefile.in) = e001c7d0e9020c0e9feb5743805ef68e64012247
-SHA1 (patch-lib_apputils_net-server.c) = 4f54924cca60e75b1b835d35c5eeb96d9f95a90e
+SHA1 (patch-lib_apputils_net-server.c) = a10630940fc56062c1074fdc0c43a0527fa76105
SHA1 (patch-lib_krb5_asn.1_asn1buf.h) = 74d7d172ec4c8d7f68a093befc6b40c99b119e37
SHA1 (patch-plugins_kdb_db2_Makefile.in) = f374fc5915b735075fbb751ef736f4ce54abc289
SHA1 (patch-plugins_kdb_db2_libdb2_Makefile.in) = b4b7e8e4192b5e5318f1e42c49315789619f3ae9
diff --git a/security/mit-krb5/patches/patch-lib_apputils_net-server.c b/security/mit-krb5/patches/patch-lib_apputils_net-server.c
index bda61f64763..b64b79f0111 100644
--- a/security/mit-krb5/patches/patch-lib_apputils_net-server.c
+++ b/security/mit-krb5/patches/patch-lib_apputils_net-server.c
@@ -1,8 +1,18 @@
-$NetBSD: patch-lib_apputils_net-server.c,v 1.2 2016/03/15 15:16:39 tez Exp $
+$NetBSD: patch-lib_apputils_net-server.c,v 1.3 2016/04/17 15:33:13 kamil Exp $
---- lib/apputils/net-server.c.orig 2013-08-30 12:14:00.000000000 +0000
+--- lib/apputils/net-server.c.orig 2016-02-29 19:50:13.000000000 +0000
+++ lib/apputils/net-server.c
-@@ -1477,7 +1477,7 @@ send_to_from(int s, void *buf, size_t le
+@@ -960,7 +960,9 @@ routing_update_needed(struct rt_msghdr *
+ break;
+ #endif
+ return 1;
++#ifdef RTM_RESOLVE
+ case RTM_RESOLVE:
++#endif
+ #ifdef RTM_NEWMADDR
+ case RTM_NEWMADDR:
+ case RTM_DELMADDR:
+@@ -1276,7 +1278,7 @@ send_to_from(int s, void *buf, size_t le
msg.msg_controllen = 0;
switch (from->sa_family) {