Hi,

NMU diff below.

diff -u achilles-2/debian/changelog achilles-2/debian/changelog
--- achilles-2/debian/changelog
+++ achilles-2/debian/changelog
@@ -1,3 +1,12 @@
+achilles (2-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Apply patch by Andreas Jochens to fix FTBFS with GCC 3.4 and
+    4.0.  Array bounds are not allowed after a type-id in
+    parentheses (Closes: #258481).
+
+ -- Christoph Berg <[EMAIL PROTECTED]>  Sat, 29 Oct 2005 12:33:40 +0200
+
 achilles (2-4) unstable; urgency=low
 
   * Change maintainer address.
only in patch2:
unchanged:
--- achilles-2.orig/screenshot.cc
+++ achilles-2/screenshot.cc
@@ -85,7 +85,7 @@
   png_write_info(png_ptr, info_ptr);
 
   /* get pointers */
-  row_pointers = (png_byte**) new (png_byte*)[height];
+  row_pointers = (png_byte**) new png_byte*[height];
   for(i = 0; i < height; i++)
     row_pointers[i] = data + (height - i - 1) 
       * 3 * width;

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/

Attachment: signature.asc
Description: Digital signature

Reply via email to