diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2008-02-04 19:54:41 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2008-02-04 19:54:41 +0000 |
commit | 0797346dcb87aaaeee040fa29640d0d85baee783 (patch) | |
tree | ec186e9b184fdd7fc2496410eae20cde63ff9ba5 /net/v6eval | |
parent | eaf1a85f3fc348a904bd655ec4bead283c567e6d (diff) | |
download | ports-0797346dcb87aaaeee040fa29640d0d85baee783.tar.gz ports-0797346dcb87aaaeee040fa29640d0d85baee783.zip |
Notes
Diffstat (limited to 'net/v6eval')
-rw-r--r-- | net/v6eval/Makefile | 3 | ||||
-rw-r--r-- | net/v6eval/files/patch-lib_Cm_BtObject.cc | 10 |
2 files changed, 12 insertions, 1 deletions
diff --git a/net/v6eval/Makefile b/net/v6eval/Makefile index 014480b06a6c..39c7fa695e72 100644 --- a/net/v6eval/Makefile +++ b/net/v6eval/Makefile @@ -7,7 +7,7 @@ PORTNAME= v6eval PORTVERSION= 3.0.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.tahi.org/release/v6eval/ @@ -20,6 +20,7 @@ RUN_DEPENDS= ${SITE_PERL}/Expect.pm:${PORTSDIR}/lang/p5-Expect \ USE_PERL5= yes USE_OPENSSL= yes +NOMANCOMPRESS= yes MAN1PREFIX= ${PREFIX}/v6eval MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN1= pktctl.1.gz pktsend.1.gz diff --git a/net/v6eval/files/patch-lib_Cm_BtObject.cc b/net/v6eval/files/patch-lib_Cm_BtObject.cc new file mode 100644 index 000000000000..cc9c162c7b3d --- /dev/null +++ b/net/v6eval/files/patch-lib_Cm_BtObject.cc @@ -0,0 +1,10 @@ +--- lib/Cm/BtObject.cc.orig 2001-10-11 20:56:13.000000000 -0800 ++++ lib/Cm/BtObject.cc 2008-02-03 13:27:51.000000000 -0900 +@@ -47,6 +47,6 @@ + BtObject::BtObject(const BtObject&) {} + BtObject::~BtObject() {} + uint32_t BtObject::hash() const {return 0;} +-int BtObject::compare(const BtObject*p) const {return (int)this-(int)p;} ++int BtObject::compare(const BtObject*p) const {return (long)this-(long)p;} + bool BtObject::isEqual(const BtObject* v) const { + return compare(v)==0;} |