r2738 - in packages/trunk/wormux/debian: . patches

Eddy Petrisor eddyp-guest at alioth.debian.org
Mon May 28 10:39:40 UTC 2007


Author: eddyp-guest
Date: 2007-05-28 10:39:39 +0000 (Mon, 28 May 2007)
New Revision: 2738

Added:
   packages/trunk/wormux/debian/patches/001_no_empty_else_gcc4.2.patch
Modified:
   packages/trunk/wormux/debian/changelog
Log:
fix 424582 - first attempt

Modified: packages/trunk/wormux/debian/changelog
===================================================================
--- packages/trunk/wormux/debian/changelog	2007-05-28 02:15:24 UTC (rev 2737)
+++ packages/trunk/wormux/debian/changelog	2007-05-28 10:39:39 UTC (rev 2738)
@@ -1,3 +1,10 @@
+wormux (0.7.9-4) UNRELEASED; urgency=low
+
+  * fix FTBFS with GCC 4.2: empty body in an else-statement
+    (Closes: #424582)
+
+ -- Eddy Petrișor <eddy.petrisor at gmail.com>  Mon, 28 May 2007 13:39:13 +0300
+
 wormux (0.7.9-3) unstable; urgency=high
 
   * debian/rules:

Added: packages/trunk/wormux/debian/patches/001_no_empty_else_gcc4.2.patch
===================================================================
--- packages/trunk/wormux/debian/patches/001_no_empty_else_gcc4.2.patch	                        (rev 0)
+++ packages/trunk/wormux/debian/patches/001_no_empty_else_gcc4.2.patch	2007-05-28 10:39:39 UTC (rev 2738)
@@ -0,0 +1,48 @@
+Index: src/character/body.cpp
+===================================================================
+--- src/character/body.cpp	(revision 2615)
++++ src/character/body.cpp	(working copy)
+@@ -472,7 +472,10 @@
+     play_once_clothe_sauv = NULL;
+   }
+   else
++  {
+     MSG_DEBUG("body","Clothe not found");
++    ;
++  }
+ 
+   assert(current_clothe != NULL);
+ }
+@@ -495,7 +498,10 @@
+     play_once_mvt_sauv = NULL;
+   }
+   else
++  {
+     MSG_DEBUG("body","Movement not found");
++    ;
++  }
+ 
+   assert(current_mvt != NULL);
+ }
+@@ -523,7 +529,10 @@
+     need_rebuild = true;
+   }
+   else
++  {
+     MSG_DEBUG("body","Clothe not found");
++    ;
++  }
+ 
+   assert(current_clothe != NULL);
+ }
+@@ -551,7 +560,10 @@
+     need_rebuild = true;
+   }
+   else
++  {
+     MSG_DEBUG("body","Movement not found");
++    ;
++  }
+ 
+   assert(current_mvt != NULL);
+ }




More information about the Pkg-games-commits mailing list