[Pkg-xfce-commits] r419 - in desktop/trunk/thunar/debian: . patches
Yves-Alexis Perez
corsac-guest at costa.debian.org
Tue Jan 3 15:11:26 UTC 2006
Author: corsac-guest
Date: 2006-01-03 15:11:25 +0000 (Tue, 03 Jan 2006)
New Revision: 419
Added:
desktop/trunk/thunar/debian/patches/
desktop/trunk/thunar/debian/patches/01_fix_build_amd64.patch
Modified:
desktop/trunk/thunar/debian/changelog
Log:
patch so thunar doesnt ftbs on amd64
Modified: desktop/trunk/thunar/debian/changelog
===================================================================
--- desktop/trunk/thunar/debian/changelog 2006-01-03 14:18:01 UTC (rev 418)
+++ desktop/trunk/thunar/debian/changelog 2006-01-03 15:11:25 UTC (rev 419)
@@ -1,3 +1,9 @@
+thunar (0.1.4svn+r18850-3) unstable; urgency=low
+
+ * Added a little patch (from Roberto Pariset) so thunar doesnt FTBS on amd64
+
+ -- Yves-Alexis Perez <corsac at corsac.net> Tue, 03 Jan 2006 16:09:49 +0100
+
thunar (0.1.4svn+r18850-2) unstable; urgency=low
* Added a build-dependancy on libxml-parser-perl so thunar builds in pbuilder
Added: desktop/trunk/thunar/debian/patches/01_fix_build_amd64.patch
===================================================================
--- desktop/trunk/thunar/debian/patches/01_fix_build_amd64.patch 2006-01-03 14:18:01 UTC (rev 418)
+++ desktop/trunk/thunar/debian/patches/01_fix_build_amd64.patch 2006-01-03 15:11:25 UTC (rev 419)
@@ -0,0 +1,14 @@
+--- tdb/tdbtool.c (revisione 19287)
++++ tdb/tdbtool.c (copia locale)
+@@ -342,9 +342,9 @@
+
+ static int print_rec(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA dbuf, void *state)
+ {
+- fprintf(pDumpFile,"\nkey %d bytes\n", key.dsize);
++ fprintf(pDumpFile,"\nkey %zu bytes\n", key.dsize);
+ print_asc((unsigned char*)key.dptr, key.dsize);
+- fprintf(pDumpFile,"\ndata %d bytes\n", dbuf.dsize);
++ fprintf(pDumpFile,"\ndata %zu bytes\n", dbuf.dsize);
+ print_data((unsigned char*)dbuf.dptr, dbuf.dsize);
+ return 0;
+ }
More information about the Pkg-xfce-commits
mailing list