Your message dated Tue, 03 Oct 2006 21:33:13 -0400
with message-id <[EMAIL PROTECTED]>
and subject line these bugs were fixed in 0.8.1-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: ufraw
Version: 0.5+cvs20051021-1
Severity: normal
Tags: patch


When building 'ufraw' on ppc64/unstable, I get the following error:


make[2]: Entering directory `/ufraw-0.5+cvs20051021'
if gcc -DHAVE_CONFIG_H -I. -I. -I.   -I/include -I/usr/include/libexif   
-DXTHREADS -I/usr/include/gimp-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/X11R6/include   -Wall -g -O2 -W -Wall -O3 -ffast-math 
-fomit-frame-pointer -mcpu=powerpc -fno-loop-optimize -MT ufraw.o -MD -MP -MF 
".deps/ufraw.Tpo" -c -o ufraw.o ufraw.c; \
        then mv -f ".deps/ufraw.Tpo" ".deps/ufraw.Po"; else rm -f 
".deps/ufraw.Tpo"; exit 1; fi
ufraw.c:1: error: -m64 requires a PowerPC64 cpu
make[2]: *** [ufraw.o] Error 1
make[2]: Leaving directory `/ufraw-0.5+cvs20051021'


With the attached patch 'ufraw' can be compiled on ppc64.


The patch makes sure that '-mcpu=powerpc' will _not_ be added
to CFLAGS on powerpc64 systems.


Probably the special CFLAGS could also be removed for the powerpc
case because the gcc bug which made them necessary has long been
fixed.


Regards
Andreas Jochens


diff -urN ../tmp-orig/ufraw-0.5+cvs20051021/configure ./configure
--- ../tmp-orig/ufraw-0.5+cvs20051021/configure 2006-04-06 08:58:35.000000000 
+0000
+++ ./configure 2006-04-06 08:58:36.000000000 +0000
@@ -6508,7 +6508,7 @@
   686)
     CFLAGS="$CFLAGS -march=i686"
     ;;
-  powerpc* | ppc*)
+  powerpc | ppc*)
 # there is a -floop-optimize bug in gcc 3.3.2 on powerpc (resolved in gcc 3.4)
     CFLAGS="$CFLAGS -mcpu=powerpc -fno-loop-optimize"
     ;;
diff -urN ../tmp-orig/ufraw-0.5+cvs20051021/configure.ac ./configure.ac
--- ../tmp-orig/ufraw-0.5+cvs20051021/configure.ac      2006-04-06 
08:58:35.000000000 +0000
+++ ./configure.ac      2006-04-06 08:54:03.000000000 +0000
@@ -223,7 +223,7 @@
   686)
     CFLAGS="$CFLAGS -march=i686"
     ;;
-  powerpc* | ppc*)
+  powerpc | ppc*)
 # there is a -floop-optimize bug in gcc 3.3.2 on powerpc (resolved in gcc 3.4)
     CFLAGS="$CFLAGS -mcpu=powerpc -fno-loop-optimize"
     ;;


--- End Message ---
--- Begin Message ---
Version: 0.8.1-1

These bugs were fixed in 0.8.1-1, but apparently were not closed on the upload. Here is the changelog from that version:

ufraw (0.8.1-1) unstable; urgency=low

  * New upstream release. (closes: #361009)
    - no longer use -mcpu=powerpc flag (closes: #361060)
  * New maintainer.  (Thanks to Matthias for his maintainership.)
* Remove unneeded -fno-loop-optimize flag on powerpc, since default compiler
    is now GCC 4.
  * Build-depend on libexiv-dev, and configure with --with-exiv2.
    (closes: #341471)
    - drop build-depend on libexif, because it seems to be buggy.
  * Build-depend on Perl, to build manpage.
  * Complete copyright information.
  * Bump standards version to 3.7.2. (no changes)
  * Bump debhelper compatibility level to 5.
  * Install readme files in all packages.
  * Change package description as per upstream's request.

 -- Hubert Chan <[EMAIL PROTECTED]>  Wed, 14 Jun 2006 00:19:48 -0400

--
Hubert Chan - email & Jabber: [EMAIL PROTECTED] - http://www.uhoreg.ca/
PGP/GnuPG key: 1024D/124B61FA   (Key available at wwwkeys.pgp.net)
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA

--- End Message ---

Reply via email to