pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/ipsec-tools Fix build problem under platforms...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/93cf416117f2
branches:  trunk
changeset: 497927:93cf416117f2
user:      tron <tron%pkgsrc.org@localhost>
date:      Sun Aug 07 22:21:05 2005 +0000

description:
Fix build problem under platforms were "size_t" is not an integer.

diffstat:

 security/ipsec-tools/distinfo         |   3 ++-
 security/ipsec-tools/patches/patch-aa |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (30 lines):

diff -r 7132dc6ab6a4 -r 93cf416117f2 security/ipsec-tools/distinfo
--- a/security/ipsec-tools/distinfo     Sun Aug 07 21:47:24 2005 +0000
+++ b/security/ipsec-tools/distinfo     Sun Aug 07 22:21:05 2005 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.9 2005/08/05 12:04:33 tron Exp $
+$NetBSD: distinfo,v 1.10 2005/08/07 22:21:05 tron Exp $
 
 SHA1 (ipsec-tools-0.6.1rc1.tar.bz2) = 2ed2692165b1d59074e00d9f3465ed7e416d5b78
 RMD160 (ipsec-tools-0.6.1rc1.tar.bz2) = 985a15f0a004985c22d6d4a55fbeb786291f4d74
 Size (ipsec-tools-0.6.1rc1.tar.bz2) = 663281 bytes
+SHA1 (patch-aa) = 0f6d9495cb4b644883274ae9985e6648630a7252
diff -r 7132dc6ab6a4 -r 93cf416117f2 security/ipsec-tools/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/ipsec-tools/patches/patch-aa     Sun Aug 07 22:21:05 2005 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.3 2005/08/07 22:21:05 tron Exp $
+
+--- src/racoon/privsep.c.orig  2005-06-04 23:08:15.000000000 +0100
++++ src/racoon/privsep.c       2005-08-07 22:35:41.000000000 +0100
+@@ -912,8 +912,8 @@
+ {
+       if ((port < 0) || (port >= isakmp_cfg_config.pool_size)) {
+               plog(LLV_ERROR, LOCATION, NULL, 
+-                  "privsep: port %d outsied of allowed range [0,%d]\n",
+-                  port, isakmp_cfg_config.pool_size - 1);
++                  "privsep: port %d outside of allowed range [0,%d]\n",
++                  port, (int)isakmp_cfg_config.pool_size - 1);
+               return -1;
+       }
+ 



Home | Main Index | Thread Index | Old Index