summaryrefslogtreecommitdiff
path: root/net/v6eval/files/patch-lib_Cm_BtObject.cc
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2008-02-04 19:54:41 +0000
committerBeech Rintoul <beech@FreeBSD.org>2008-02-04 19:54:41 +0000
commit0797346dcb87aaaeee040fa29640d0d85baee783 (patch)
treeec186e9b184fdd7fc2496410eae20cde63ff9ba5 /net/v6eval/files/patch-lib_Cm_BtObject.cc
parentUse termios.h instead of sgtty.h (diff)
- Fix man install
- Add patch to fix gcc-4.2 build problem on amd64 - Bump portrevision Reported by: pointyhat via pav
Notes
Notes: svn path=/head/; revision=206725
Diffstat (limited to 'net/v6eval/files/patch-lib_Cm_BtObject.cc')
-rw-r--r--net/v6eval/files/patch-lib_Cm_BtObject.cc10
1 files changed, 10 insertions, 0 deletions
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;}