Your message dated Tue, 09 Aug 2005 15:02:08 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#320040: fixed in cln 1.1.9-4
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)

--------------------------------------
Received: (at submit) by bugs.debian.org; 26 Jul 2005 16:36:59 +0000
>From [EMAIL PROTECTED] Tue Jul 26 09:36:59 2005
Return-path: <[EMAIL PROTECTED]>
Received: from d009119.adsl.hansenet.de (localhost.localdomain) [80.171.9.119] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1DxSQN-0003RR-00; Tue, 26 Jul 2005 09:36:59 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
        id 1DxSQL-0005nt-DL; Tue, 26 Jul 2005 18:36:57 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: cln: FTBFS (ppc64): #error "Define cl_word_alignment for your CPU!"
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 26 Jul 2005 18:36:57 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: cln
Version: 1.1.9-1.1
Severity: normal
Tags: patch

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

 g++ -O2 -fno-exceptions -finline-limit=1000 -I../include -I../include -I./base 
-c ./base/cl_N_err_d0.cc  -fPIC -DPIC -o .libs/cl_N_err_d0.o
In file included from ../include/cln/number.h:8,
                 from ./base/cl_N.h:6,
                 from ./base/cl_N_err_d0.cc:7:
../include/cln/object.h:32:4: error: #error "Define cl_word_alignment for your 
CPU!"
../include/cln/object.h: In function 'cl_boolean 
cln::cl_pointer_p(cln::cl_uint)':
../include/cln/object.h:76: error: 'cl_word_alignment' was not declared in this 
scope
../include/cln/object.h: In function 'cl_boolean 
cln::cl_immediate_p(cln::cl_uint)':
../include/cln/object.h:80: error: 'cl_word_alignment' was not declared in this 
scope
make[3]: *** [cl_N_err_d0.lo] Error 1
make[3]: Leaving directory `/cln-1.1.9/src'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/cln-1.1.9/include/cln/modules.h ./include/cln/modules.h
--- ../tmp-orig/cln-1.1.9/include/cln/modules.h 2004-09-06 19:46:35.000000000 
+0000
+++ ./include/cln/modules.h     2005-07-26 08:27:17.000000000 +0000
@@ -64,7 +64,7 @@
   #endif
   // Globalize a label defined in the same translation unit.
   // See macro ASM_GLOBALIZE_LABEL in the gcc sources.
-  #if defined(__i386__) || defined(__m68k__) || defined(__mips__) || 
defined(__mipsel__) || defined(__mips64__) || defined(__alpha__) || 
defined(__rs6000__) || defined(__x86_64__) || defined(__s390__)
+  #if defined(__i386__) || defined(__m68k__) || defined(__mips__) || 
defined(__mipsel__) || defined(__mips64__) || defined(__alpha__) || 
defined(__rs6000__) || defined(__powerpc64__) || defined(__x86_64__) || 
defined(__s390__)
     // Some m68k systems use "xdef" or "global" or ".global"...
     #define CL_GLOBALIZE_LABEL(label)  __asm__("\t.globl " label);
   #endif
@@ -142,7 +142,7 @@
   #if defined(__arm__)
     #define CL_JUMP_TO(addr)  ASM_VOLATILE("mov pc,%0" : : "r" ((void*)(addr)))
   #endif
-  #if defined(__rs6000__) || defined(__powerpc__) || defined(__ppc__)
+  #if defined(__rs6000__) || defined(__powerpc__) || defined(__ppc__) || 
defined(__powerpc64__)
     //#define CL_JUMP_TO(addr)  ASM_VOLATILE("mtctr %0\n\tbctr" : : "r" 
((void*)(addr)))
     #define CL_JUMP_TO(addr)  ASM_VOLATILE("b " ASM_UNDERSCORE_PREFIX #addr)
   #endif
diff -urN ../tmp-orig/cln-1.1.9/include/cln/object.h ./include/cln/object.h
--- ../tmp-orig/cln-1.1.9/include/cln/object.h  2004-09-27 20:14:42.000000000 
+0000
+++ ./include/cln/object.h      2005-07-26 06:19:42.000000000 +0000
@@ -25,7 +25,7 @@
 #if defined(__i386__) || defined(__mips__) || defined(__mipsel__) || 
defined(__sparc__) || defined(__hppa__) || defined(__arm__) || 
defined(__rs6000__) || defined(__m88k__) || defined(__convex__) || 
defined(__s390__)
   #define cl_word_alignment  4
 #endif
-#if defined(__alpha__) || defined(__mips64__) || defined(__sparc64__) || 
defined(__ia64__) || defined(__x86_64__)
+#if defined(__alpha__) || defined(__mips64__) || defined(__powerpc64__) || 
defined(__sparc64__) || defined(__ia64__) || defined(__x86_64__)
   #define cl_word_alignment  8
 #endif
 #if !defined(cl_word_alignment)
diff -urN ../tmp-orig/cln-1.1.9/include/cln/types.h ./include/cln/types.h
--- ../tmp-orig/cln-1.1.9/include/cln/types.h   2004-10-20 20:51:38.000000000 
+0000
+++ ./include/cln/types.h       2005-07-26 08:28:40.000000000 +0000
@@ -48,7 +48,7 @@
     #undef HAVE_LONGLONG
    #endif
   #endif
-  #if defined(HAVE_LONGLONG) && (defined(__alpha__) || defined(__mips64__) || 
defined(__sparc64__) || defined(__ia64__) || defined(__x86_64__))
+  #if defined(HAVE_LONGLONG) && (defined(__alpha__) || defined(__mips64__) || 
defined(__powerpc64__) || defined(__sparc64__) || defined(__ia64__) || 
defined(__x86_64__))
     // 64 bit registers in hardware
     #define HAVE_FAST_LONGLONG
   #endif
@@ -85,7 +85,7 @@
   #define signean_minus -1
 
 // Integer type used for counters.
-  #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) 
|| defined(__x86_64__)))
+  #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || defined(__ia64__) 
|| defined(__powerpc64__) || defined(__x86_64__)))
     #define intCsize long_bitsize
     typedef long           sintC;
     typedef unsigned long  uintC;
@@ -119,7 +119,7 @@
     typedef int sintD;
     typedef unsigned int uintD;
   #else  // we are not using GMP, so just guess something reasonable
-    #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || 
defined(__ia64__) || defined(__x86_64__)))
+    #if (defined(HAVE_FAST_LONGLONG) && (defined(__alpha__) || 
defined(__ia64__) || defined(__powerpc64__) || defined(__x86_64__)))
       #define intDsize 64
       typedef sint64  sintD;
       typedef uint64  uintD;

---------------------------------------
Received: (at 320040-close) by bugs.debian.org; 9 Aug 2005 22:09:15 +0000
>From [EMAIL PROTECTED] Tue Aug 09 15:09:15 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1E2cAi-0007Ax-00; Tue, 09 Aug 2005 15:02:08 -0700
From: Richard Kreckel <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#320040: fixed in cln 1.1.9-4
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 09 Aug 2005 15:02:08 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: cln
Source-Version: 1.1.9-4

We believe that the bug you reported is fixed in the latest version of
cln, which is due to be installed in the Debian FTP archive:

cln_1.1.9-4.diff.gz
  to pool/main/c/cln/cln_1.1.9-4.diff.gz
cln_1.1.9-4.dsc
  to pool/main/c/cln/cln_1.1.9-4.dsc
libcln-dev_1.1.9-4_i386.deb
  to pool/main/c/cln/libcln-dev_1.1.9-4_i386.deb
libcln3c2_1.1.9-4_i386.deb
  to pool/main/c/cln/libcln3c2_1.1.9-4_i386.deb
pi_1.1.9-4_i386.deb
  to pool/main/c/cln/pi_1.1.9-4_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Richard Kreckel <[EMAIL PROTECTED]> (supplier of updated cln package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Tue, 09 Aug 2005 23:19:12 +0200
Source: cln
Binary: pi libcln-dev libcln3c2
Architecture: source i386
Version: 1.1.9-4
Distribution: unstable
Urgency: low
Maintainer: Richard Kreckel <[EMAIL PROTECTED]>
Changed-By: Richard Kreckel <[EMAIL PROTECTED]>
Description: 
 libcln-dev - Development library for Class Library for Numbers (c++)
 libcln3c2  - Class Library for Numbers (C++)
 pi         - Compute Archimedes' constant Pi to arbitrary precision
Closes: 320040
Changes: 
 cln (1.1.9-4) unstable; urgency=low
 .
   * Sigh, I could've sworn that I applied the patch from upstream in 1.1.9-2.
   Apparently, I'm overworked.  Here it goes again; closes: #320040.
Files: 
 88a9eac4e52eedac4d3ddb6ed066b64b 597 - optional cln_1.1.9-4.dsc
 4d982caeccf321a31c95938d6c6bcaed 6111 - optional cln_1.1.9-4.diff.gz
 3234c1a6d93979aef9fa2356db1d8223 399620 libs optional 
libcln3c2_1.1.9-4_i386.deb
 2ac9bbdc901139c5e6562a8fde916f5d 907028 libdevel optional 
libcln-dev_1.1.9-4_i386.deb
 8a0f8ee725c8ef1161447f94b176b355 7506 math optional pi_1.1.9-4_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC+SMHXY7lDPAZkWIRAkdMAKDFAlAlX/XT2M+85I9I88TqTuiYkgCeK38n
6VKIl1W+2BasEhzaN1fRdak=
=SlqK
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to