[Pkg-sdl-commits] r58 - in unstable/libsdl-sge/debian: . patches

Aurelien Jarno aurel32 at costa.debian.org
Sat May 13 23:05:12 CEST 2006


Author: aurel32
Date: 2006-05-13 21:05:12 +0000 (Sat, 13 May 2006)
New Revision: 58

Added:
   unstable/libsdl-sge/debian/patches/015_overflow.diff
Modified:
   unstable/libsdl-sge/debian/changelog
   unstable/libsdl-sge/debian/control
Log:
  * debian/control: bumped Standards-Version to 3.7.2 (no changes).



Modified: unstable/libsdl-sge/debian/changelog
===================================================================
--- unstable/libsdl-sge/debian/changelog	2006-05-13 21:03:21 UTC (rev 57)
+++ unstable/libsdl-sge/debian/changelog	2006-05-13 21:05:12 UTC (rev 58)
@@ -3,6 +3,7 @@
   [ Aurelien Jarno ]
 
   * debian/patches/015_overflow.diff: fix and overflow in sge_collision.cpp. 
+  * debian/control: bumped Standards-Version to 3.7.2 (no changes).
 
  -- Aurelien Jarno <aurel32 at debian.org>  Sat, 13 May 2006 23:01:51 +0200
 

Modified: unstable/libsdl-sge/debian/control
===================================================================
--- unstable/libsdl-sge/debian/control	2006-05-13 21:03:21 UTC (rev 57)
+++ unstable/libsdl-sge/debian/control	2006-05-13 21:05:12 UTC (rev 58)
@@ -4,7 +4,7 @@
 Maintainer: Debian SDL packages maintainers <pkg-sdl-maintainers at lists.alioth.debian.org>
 Uploaders: Matthew Danish <mrd at debian.org>, Zephaniah E. Hull <warp at debian.org>, Lawrence Williams <lawrence_cecil_williams at hotmail.com>, Sam Hocevar (Debian packages) <sam+deb at zoy.org>, Aurelien Jarno <aurel32 at debian.org>, Josselin Mouette <joss at debian.org>
 Build-Depends: debhelper (>= 4.0), quilt, libsdl1.2-dev, libsdl-image1.2-dev, libfreetype6-dev (>= 2.0.1.20010317-1)
-Standards-Version: 3.6.2
+Standards-Version: 3.7.2
 
 Package: libsdl-sge
 Section: libs

Added: unstable/libsdl-sge/debian/patches/015_overflow.diff
===================================================================
--- unstable/libsdl-sge/debian/patches/015_overflow.diff	2006-05-13 21:03:21 UTC (rev 57)
+++ unstable/libsdl-sge/debian/patches/015_overflow.diff	2006-05-13 21:05:12 UTC (rev 58)
@@ -0,0 +1,22 @@
+diff -ur sge030809/sge_collision.cpp sge030809_modified/sge_collision.cpp
+--- sge030809/sge_collision.cpp	2003-08-03 20:43:15.000000000 +0900
++++ sge030809_modified/sge_collision.cpp	2006-01-21 17:00:28.000000000 +0900
+@@ -336,7 +336,7 @@
+ void sge_unset_cdata(sge_cdata *cd, Sint16 x, Sint16 y, Sint16 w, Sint16 h)
+ {
+ 	Uint8 *map=cd->map;
+-	Sint16 offs,len;
++	Sint32 offs,len;
+ 	int i,n=0;
+ 	
+ 	offs=y*cd->w + x;
+@@ -365,7 +365,7 @@
+ void sge_set_cdata(sge_cdata *cd, Sint16 x, Sint16 y, Sint16 w, Sint16 h)
+ {
+ 	Uint8 *map=cd->map;
+-	Sint16 offs,len;
++	Sint32 offs,len;
+ 	int i,n=0;
+ 	
+ 	offs=y*cd->w + x;
+




More information about the Pkg-sdl-commits mailing list