View | Details | Raw Unified | Return to bug 176009
Collapse All | Expand All

(-)./Makefile (-6 / +1 lines)
Lines 1-12 Link Here
1
# New ports collection makefile for:	p5-Net-SAML
2
# Date created:		2007-07-14
3
# Whom:			Gea-Suan Lin <gslin@gslin.org>
4
#
5
# $FreeBSD: ports/security/p5-Net-SAML/Makefile,v 1.16 2012/11/17 06:01:13 svnexp Exp $
1
# $FreeBSD: ports/security/p5-Net-SAML/Makefile,v 1.16 2012/11/17 06:01:13 svnexp Exp $
6
#
7
2
8
PORTNAME=	Net-SAML
3
PORTNAME=	Net-SAML
9
PORTVERSION=	1.05
4
PORTVERSION=	1.11
10
CATEGORIES=	security perl5
5
CATEGORIES=	security perl5
11
MASTER_SITES=	CPAN \
6
MASTER_SITES=	CPAN \
12
		http://zxid.org/
7
		http://zxid.org/
(-)./distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (zxid-1.05.tgz) = 779de5245b026abfe73d4e7b9306c033c2dd600fc48c9d5eb0251f4c9914e190
1
SHA256 (zxid-1.11.tgz) = 369a26c8819ea9bce53e128e31e91e2e3ec38771101083c0a8df5dac2a2d5982
2
SIZE (zxid-1.05.tgz) = 1800009
2
SIZE (zxid-1.11.tgz) = 1999606
(-)./files/patch-errmac.h (-10 / +10 lines)
Lines 1-14 Link Here
1
--- ../errmac.h.orig	2009-10-16 19:37:47.000000000 +0400
1
--- ../errmac.h.orig	2013-02-10 20:04:39.000000000 +0800
2
+++ ../errmac.h	2009-10-30 00:39:36.000000000 +0300
2
+++ ../errmac.h	2013-02-10 20:05:04.000000000 +0800
3
@@ -406,9 +406,9 @@
3
@@ -445,9 +445,9 @@
4
 #define DD(format,...)  /* Documentative */
4
 #define DD_XML_BLOB(cf, lk, len, xml) /* Documentative */
5
 
5
 
6
 int hexdmp(char* msg, char* p, int len, int max);
6
 int hexdmp(const char* msg, const char* p, int len, int max);
7
-int hexdump(char* msg, char* p, char* lim, int max);
7
-int hexdump(const char* msg, const char* p, const char* lim, int max);
8
+int myhexdump(char* msg, char* p, char* lim, int max);
8
+int myhexdump(const char* msg, const char* p, const char* lim, int max);
9
 
9
 
10
-#define HEXDUMP(msg, p, lim, max) (zx_debug > 1 && hexdump((msg), (p), (lim), (max)))
10
-#define HEXDUMP(msg, p, lim, max) if (zx_debug > 1) hexdump((msg), (p), (lim), (max))
11
+#define HEXDUMP(msg, p, lim, max) (zx_debug > 1 && myhexdump((msg), (p), (lim), (max)))
11
+#define HEXDUMP(msg, p, lim, max) if (zx_debug > 1) myhexdump((msg), (p), (lim), (max))
12
 #define DHEXDUMP(msg, p, lim, max) /* Disabled hex dump */
12
 #define DHEXDUMP(msg, p, lim, max) /* Disabled hex dump */
13
 
13
 
14
 #define ERR(format,...) (fprintf(stderr, "t %10s:%-3d %-16s %s E " format "\n", __FILE__, __LINE__, __FUNCTION__, ERRMAC_INSTANCE, __VA_ARGS__), fflush(stderr))
14
 #define DUMP_CORE() ASSERT(0)

Return to bug 176009