[Pkg-jed-commit] r991 - in slang-slirp/trunk/debian: . patches
Rafael Laboissiere
rafael at alioth.debian.org
Fri Dec 14 22:44:47 UTC 2007
Author: rafael
Date: 2007-12-14 22:44:46 +0000 (Fri, 14 Dec 2007)
New Revision: 991
Added:
slang-slirp/trunk/debian/patches/02_function-deref.patch
Modified:
slang-slirp/trunk/debian/changelog
Log:
Added patch to cope with a recent slang2.1 release that apparently
fixed some function dereferencing bugs. This was making the package
FTBFS.
Modified: slang-slirp/trunk/debian/changelog
===================================================================
--- slang-slirp/trunk/debian/changelog 2007-12-07 14:58:11 UTC (rev 990)
+++ slang-slirp/trunk/debian/changelog 2007-12-14 22:44:46 UTC (rev 991)
@@ -1,5 +1,10 @@
slang-slirp (1.9.3.1-2) UNRELEASED; urgency=low
+ * debian/patches/02_function-deref.patch: Added patch to cope with
+ a recent slang2.1 release that apparently fixed some function
+ dereferencing bugs. This was making the package FTBFS. Patch
+ suggested by the upstream author (thanks, Michael Noble). Closes:
+ #453163.
* debian/control:
+ Added Homepage field
+ Use the now official Vcs-* fields instead of the obsolete XS-Vcs-*
Added: slang-slirp/trunk/debian/patches/02_function-deref.patch
===================================================================
--- slang-slirp/trunk/debian/patches/02_function-deref.patch (rev 0)
+++ slang-slirp/trunk/debian/patches/02_function-deref.patch 2007-12-14 22:44:46 UTC (rev 991)
@@ -0,0 +1,11 @@
+--- slang-slirp-1.9.3.1.orig/slirputils.sl.in
++++ slang-slirp-1.9.3.1/slirputils.sl.in
+@@ -918,7 +918,7 @@
+
+ define struct_map(type, struct_arr, field) % {{{
+ {
+- !if (length(struct_arr)) return (@Array_Type)(type, 0);
++ !if (length(struct_arr)) return @Array_Type(type, 0);
+ return array_map(type, &get_struct_field, struct_arr, field);
+ } % }}}
+
More information about the Pkg-jed-commit
mailing list