Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/gnome
In directory vz-cvs-3.sog:/tmp/cvs-serv25958/stable/main/finkinfo/gnome

Modified Files:
        librarian.08-shlibs.info librarian.08-shlibs.patch 
Log Message:
fix operator-precedence mess


Index: librarian.08-shlibs.info
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/gnome/librarian.08-shlibs.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- librarian.08-shlibs.info    2 Nov 2010 15:46:17 -0000       1.3
+++ librarian.08-shlibs.info    6 Nov 2011 07:30:18 -0000       1.4
@@ -1,13 +1,13 @@
 Info3: <<
 Package: librarian.08-shlibs
 Version: 0.8.1
-Revision: 8
+Revision: 9
 
 Source: http://rarian.freedesktop.org/Releases/rarian-%v.tar.bz2
 Source-MD5: 75091185e13da67a0ff4279de1757b94
 
 PatchFile: %n.patch
-PatchFile-MD5: f304cc7efaa65b573197dcd7a4ccd09c
+PatchFile-MD5: 9fe6bf87a0ebb4f5f239f6d9b830b8d5
 
 BuildDepends: fink (>= 0.24.12-1)
 Depends: xdg-base
@@ -114,6 +114,12 @@
        DocFiles: AUTHORS COPYING* ChangeLog NEWS README TODO
 <<
 
+DescPort: <<
+       Fix operator precedence logic problem in tinyxmlparser.cpp
+       (thanks for the warning clang!) by importing upstream change
+       from tinyxml.sf.net (IsWhiteSpace in tinyxml.h already tests
+       for \n and \r so just defer intead of fixing redundant check).
+<<
 DescPackaging: <<
        Upstream doesn't understand API versioning. Fake a fink idea
        of libversion by placing it in a subdir and link it back from

Index: librarian.08-shlibs.patch
===================================================================
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/gnome/librarian.08-shlibs.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- librarian.08-shlibs.patch   11 May 2009 18:02:00 -0000      1.1
+++ librarian.08-shlibs.patch   6 Nov 2011 07:30:18 -0000       1.2
@@ -19,3 +19,15 @@
             -- "$@"` \
      || print_usage
  
+diff -Nurd -x'*~' rarian-0.8.1.orig/util/tinyxmlparser.cpp 
rarian-0.8.1/util/tinyxmlparser.cpp
+--- rarian-0.8.1.orig/util/tinyxmlparser.cpp   2008-09-01 14:40:21.000000000 
-0400
++++ rarian-0.8.1/util/tinyxmlparser.cpp        2011-11-06 02:13:49.000000000 
-0500
+@@ -353,7 +353,7 @@
+       }
+       else
+       {
+-              while ( *p && IsWhiteSpace( *p ) || *p == '\n' || *p =='\r' )
++              while ( *p && IsWhiteSpace( *p ) )
+                       ++p;
+       }
+ 


------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to