r6411 - in packages/trunk/holotz-castle/debian: . patches

Miriam Ruiz baby-guest at alioth.debian.org
Thu Apr 3 15:39:33 UTC 2008


Author: baby-guest
Date: 2008-04-03 15:39:32 +0000 (Thu, 03 Apr 2008)
New Revision: 6411

Modified:
   packages/trunk/holotz-castle/debian/changelog
   packages/trunk/holotz-castle/debian/patches/05_jlib.patch
Log:
Updated 05_jlib.patch. Fixed FTBFS with GCC 4.3. Closes: #417061



Modified: packages/trunk/holotz-castle/debian/changelog
===================================================================
--- packages/trunk/holotz-castle/debian/changelog	2008-04-02 20:35:14 UTC (rev 6410)
+++ packages/trunk/holotz-castle/debian/changelog	2008-04-03 15:39:32 UTC (rev 6411)
@@ -26,6 +26,10 @@
   [ Ansgar Burchardt ]
   * debian/control: Change XS-Vcs-* to Vcs-*
 
+  [ Miriam Ruiz ]
+  * Updated 05_jlib.patch. Fixed FTBFS with GCC 4.3. Closes: #417061
+    Thanks to Maximiliano Curia <maxy at gnuservers.com.ar>
+
  -- Ansgar Burchardt <ansgar at 43-1.org>  Fri, 29 Feb 2008 03:08:36 +0100
 
 holotz-castle (1.3.9-1) unstable; urgency=low

Modified: packages/trunk/holotz-castle/debian/patches/05_jlib.patch
===================================================================
--- packages/trunk/holotz-castle/debian/patches/05_jlib.patch	2008-04-02 20:35:14 UTC (rev 6410)
+++ packages/trunk/holotz-castle/debian/patches/05_jlib.patch	2008-04-03 15:39:32 UTC (rev 6411)
@@ -68,7 +68,7 @@
 +   */
 +  u32 ReadLE32(float *fbuff)
 +	{
-+		typedef char static_assert[sizeof(u32) == sizeof(float) ? 1 : -1 ];
++		typedef char pre_cxx0x_static_assert[sizeof(u32) == sizeof(float) ? 1 : -1 ];
 +		u32 ibuff;
 +		if (ReadLE32(&ibuff) == 4)
 +		{
@@ -91,7 +91,7 @@
 +   */
 +  u32 WriteLE32(const float *fbuff)
 +	{
-+		typedef char static_assert[sizeof(u32) == sizeof(float) ? 1 : -1 ];
++		typedef char pre_cxx0x_static_assert[sizeof(u32) == sizeof(float) ? 1 : -1 ];
 +		u32 ibuff;
 +		memcpy(&ibuff, fbuff, sizeof(u32));
 +		return WriteLE32(&ibuff);




More information about the Pkg-games-commits mailing list