pkgsrc-Changes archive

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

CVS commit: pkgsrc/archivers/bicom



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Dec 22 20:59:55 UTC 2016

Modified Files:
        pkgsrc/archivers/bicom: distinfo
Added Files:
        pkgsrc/archivers/bicom/patches: patch-bialib_sufftree.h

Log Message:
Fix dependency on pointer signs.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/archivers/bicom/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/archivers/bicom/patches/patch-bialib_sufftree.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/archivers/bicom/distinfo
diff -u pkgsrc/archivers/bicom/distinfo:1.2 pkgsrc/archivers/bicom/distinfo:1.3
--- pkgsrc/archivers/bicom/distinfo:1.2 Wed Feb 23 14:45:22 2005
+++ pkgsrc/archivers/bicom/distinfo     Thu Dec 22 20:59:54 2016
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.2 2005/02/23 14:45:22 agc Exp $
+$NetBSD: distinfo,v 1.3 2016/12/22 20:59:54 joerg Exp $
 
 SHA1 (bicom101.zip) = b5cd48931cc88af0a2666ab1e09910259e890fe6
 RMD160 (bicom101.zip) = 3aa8c64155026da238f3c1da1c404fb05ec63567
 Size (bicom101.zip) = 104408 bytes
+SHA1 (patch-bialib_sufftree.h) = 4a3b921bcac546824dfbaed0142c07cfad4dd3c1

Added files:

Index: pkgsrc/archivers/bicom/patches/patch-bialib_sufftree.h
diff -u /dev/null pkgsrc/archivers/bicom/patches/patch-bialib_sufftree.h:1.1
--- /dev/null   Thu Dec 22 20:59:55 2016
+++ pkgsrc/archivers/bicom/patches/patch-bialib_sufftree.h      Thu Dec 22 20:59:54 2016
@@ -0,0 +1,17 @@
+$NetBSD: patch-bialib_sufftree.h,v 1.1 2016/12/22 20:59:54 joerg Exp $
+
+Don't check sign of pointers.
+
+--- bialib/sufftree.h.orig     2016-12-22 12:42:37.570864687 +0000
++++ bialib/sufftree.h
+@@ -95,8 +95,8 @@ class SuffixTreeModel : public Arithmeti
+     {
+     public:
+     bool InEdge()
+-      {return(r>0);}
+-    //After Canonize()ing a point, r >0 <=> proj!=0, i.e., point
++      {return(r != 0);}
++    //After Canonize()ing a point, r !=0 <=> proj!=0, i.e., point
+     //is inside an edge
+     INode *ins;  //parent of point
+     LNode *r;    //if !=0, then child(ins,a)



Home | Main Index | Thread Index | Old Index