Package: csmash Version: 0.6.6-2 Severity: normal Followup-For: Bug #249958
I have updated the patch to also include a fix for the x86-64 arch which is similiar to the ones for the other 64bit archs added previously. Thanks, Chris Cheney -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (x86_64) Kernel: Linux 2.6.6-bk2-amd64 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8
diff -Nrua csmash-0.6.6/debian/changelog csmash-0.6.6.pure64/debian/changelog --- csmash-0.6.6/debian/changelog 2004-05-22 05:50:38.965000564 -0500 +++ csmash-0.6.6.pure64/debian/changelog 2004-05-22 05:43:55.739129282 -0500 @@ -1,3 +1,10 @@ +csmash (0.6.6-2.0.0.1.pure64) unstable; urgency=low + + * Added real package alternatives for Build-Depends. + * Bug #141921 was encountered for amd64 (x86-64) as well. + + -- Christopher L Cheney <[EMAIL PROTECTED]> Sat, 22 May 2004 05:40:00 -0500 + csmash (0.6.6-2) unstable; urgency=low * Orphanage upload. diff -Nrua csmash-0.6.6/debian/control csmash-0.6.6.pure64/debian/control --- csmash-0.6.6/debian/control 2004-05-22 05:50:38.966000333 -0500 +++ csmash-0.6.6.pure64/debian/control 2004-05-22 05:44:22.977835638 -0500 @@ -2,7 +2,7 @@ Section: games Priority: optional Maintainer: Debian QA Group <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), xutils, libjpeg-dev, libz-dev, libgl-dev, libglu-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, libsdl-image1.2-dev, libgtk2.0-dev, libogg-dev, libvorbis-dev +Build-Depends: debhelper (>= 4.0.0), libgtk2.0-dev, libjpeg62-dev | libjpeg-dev, libogg-dev, libsdl1.2-dev, libsdl-image1.2-dev, libsdl-mixer1.2-dev, libvorbis-dev, xlibmesa-gl-dev | libgl-dev, xlibmesa-glu-dev | libglu-dev, xutils, zlib1g-dev | libz-dev Standards-Version: 3.6.1 Package: csmash diff -Nrua csmash-0.6.6/loadparts.cpp csmash-0.6.6.pure64/loadparts.cpp --- csmash-0.6.6/loadparts.cpp 2004-05-22 05:50:38.961001487 -0500 +++ csmash-0.6.6.pure64/loadparts.cpp 2004-05-22 05:41:00.475634301 -0500 @@ -245,7 +245,7 @@ while ('\\' == line[l-1]) { // concat next line(s) -#if (defined __ia64__) || (defined __alpha__) || (defined __s390__) +#if (defined __alpha__) || (defined __ia64__) || (defined __s390__) || (defined __x86_64__) int bufsize = clamp((u_long) 0, sizeof(line)-l, sizeof(line)-1); #else int bufsize = clamp(0U, sizeof(line)-l, sizeof(line)-1);