pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/f4l



Module Name:    pkgsrc
Committed By:   joerg
Date:           Thu Dec 22 21:05:01 UTC 2016

Modified Files:
        pkgsrc/graphics/f4l: distinfo
Added Files:
        pkgsrc/graphics/f4l/patches: patch-src_f4lm.cpp

Log Message:
Pointers can't be ordered relative to 0.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/graphics/f4l/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp

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

Modified files:

Index: pkgsrc/graphics/f4l/distinfo
diff -u pkgsrc/graphics/f4l/distinfo:1.6 pkgsrc/graphics/f4l/distinfo:1.7
--- pkgsrc/graphics/f4l/distinfo:1.6    Tue Nov  3 21:33:57 2015
+++ pkgsrc/graphics/f4l/distinfo        Thu Dec 22 21:05:01 2016
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.6 2015/11/03 21:33:57 agc Exp $
+$NetBSD: distinfo,v 1.7 2016/12/22 21:05:01 joerg Exp $
 
 SHA1 (f4l-0.2.1.tar.bz2) = cae8077e5c6a87a406c78b615fdb69e78a30d330
 RMD160 (f4l-0.2.1.tar.bz2) = 318a6c222466637b6f8d7fe955caacb0d1ee35f5
@@ -7,5 +7,6 @@ Size (f4l-0.2.1.tar.bz2) = 1502767 bytes
 SHA1 (patch-aa) = da7d819893dbbb48ffdb45f14fc72573a59c99bb
 SHA1 (patch-ab) = 443ac912b4563cd36d30542d502f4c4a63e68c40
 SHA1 (patch-src_ccanvastext.cpp) = b0f92602d192356b2f7886f613c1ac6c5ae7ea3a
+SHA1 (patch-src_f4lm.cpp) = 3ef3a5ff3dbb5ebe77011a12a9c3ba6498384e7e
 SHA1 (patch-src_f4lmdoc.cpp) = abcd735a46aad8e947bba08c525eb065efef1007
 SHA1 (patch-src_flagStonePort_transform-cxx-bsd_transform_FSVector.h) = 3d1973ec3e709cc92eaf325946368bdd92c51a06

Added files:

Index: pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp
diff -u /dev/null pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp:1.1
--- /dev/null   Thu Dec 22 21:05:01 2016
+++ pkgsrc/graphics/f4l/patches/patch-src_f4lm.cpp      Thu Dec 22 21:05:01 2016
@@ -0,0 +1,13 @@
+$NetBSD: patch-src_f4lm.cpp,v 1.1 2016/12/22 21:05:01 joerg Exp $
+
+--- src/f4lm.cpp.orig  2016-12-22 14:21:37.623447732 +0000
++++ src/f4lm.cpp
+@@ -1617,7 +1617,7 @@ void F4lmApp::openDocumentFile (const ch
+ 
+   F4lmDoc * doc;
+   // check, if document already open. If yes, set the focus to the first view
+-  for (doc = pDocList->first (); doc > 0; doc = pDocList->next ())
++  for (doc = pDocList->first (); doc; doc = pDocList->next ())
+   {
+     if (doc->pathName () == file)
+     {



Home | Main Index | Thread Index | Old Index