Your message dated Sat, 15 Oct 2005 05:47:12 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#332977: fixed in ghc6 6.4.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)
--------------------------------------
Received: (at submit) by bugs.debian.org; 9 Oct 2005 21:21:03 +0000
>From [EMAIL PROTECTED] Sun Oct 09 14:21:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from farad.aurel32.net [82.232.2.251]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1EOibP-0006Qk-00; Sun, 09 Oct 2005 14:21:03 -0700
Received: from hertz.aurel32.net ([2001:618:400:fc13:2e0:18ff:fea3:b80f])
by farad.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
(Exim 4.50)
id 1EOibN-0002NZ-AC; Sun, 09 Oct 2005 23:21:01 +0200
Received: from aurel32 by hertz.aurel32.net with local (Exim 4.54)
id 1EOibN-000MCM-7w; Sun, 09 Oct 2005 23:21:01 +0200
Content-Type: multipart/mixed; boundary="===============0322503058=="
MIME-Version: 1.0
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: ghc6: FTBFS on GNU/kFreeBSD
X-Mailer: reportbug 3.17
Date: Sun, 09 Oct 2005 23:21:01 +0200
Message-Id: <[EMAIL PROTECTED]>
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.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02
This is a multi-part MIME message sent by reportbug.
--===============0322503058==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Package: ghc6
Version: 6.4-4.1+kbsd
Severity: important
Tags: patch
Hi,
ghc6 is missing support for GNU/kFreeBSD. I have successfully added
support for kfreebsd-i386 and bootstrapped ghc6.
Please find attached a patch to make the build of ghc6 possible on this
architecture. Could you please add it in the next upload? It would also
be nice if you can forward it to upstream.
Thanks,
Aurelien
-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.4-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Versions of packages ghc6 depends on:
ii gcc-3.3 1:3.3.6-10 The GNU C compiler
ii haskell-utils 1.6.0.1 Utilities used by the Debian Haske
ii libc0.1 2.3-1+kbsd.11 GNU C Library: Shared libraries an
ii libgmp3-dev 4.1.4-10+libtool Multiprecision arithmetic library
ii libgmp3c2 4.1.4-10+libtool Multiprecision arithmetic library
ii libreadline5-dev 5.0-11 GNU readline and history libraries
ii perl [perl5] 5.8.7-5 Larry Wall's Practical Extraction
ghc6 recommends no packages.
-- no debconf information
--===============0322503058==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="ghc6.diff"
Author: aurel32
Status: in BTS
--- ghc6-6.4.orig/ghc/driver/mangler/ghc-asm.lprl
+++ ghc6-6.4/ghc/driver/mangler/ghc-asm.lprl
@@ -160,7 +160,7 @@
$T_HDR_vector = "\.text\n\t\.align 2\n"; # NB: requires padding
#--------------------------------------------------------#
- } elsif ( $TargetPlatform =~
/^i386-.*-(solaris2|linux|freebsd|netbsd|openbsd)$/ ) {
+ } elsif ( $TargetPlatform =~
/^i386-.*-(solaris2|linux|freebsd|netbsd|openbsd|kfreebsdgnu)$/ ) {
$T_STABBY = 0; # 1 iff .stab things (usually if a.out format)
$T_US = ''; # _ if symbols have an underscore on the front
--- ghc6-6.4.orig/configure.ac
+++ ghc6-6.4/configure.ac
@@ -188,6 +188,15 @@
HostVendor_CPP='unknown'
HostOS_CPP='linux'
;;
+i[3456]86-*-kfreebsd*-gnu)
+ HostPlatform=i386-unknown-kfreebsdgnu # hack again
+ TargetPlatform=i386-unknown-kfreebsdgnu
+ BuildPlatform=i386-unknown-kfreebsdgnu
+ HostPlatform_CPP='i386_unknown_kfreebsdgnu'
+ HostArch_CPP='i386'
+ HostVendor_CPP='unknown'
+ HostOS_CPP='kfreebsdgnu'
+ ;;
i[[3456]]86-*-freebsd[[3-9]]*) # FreeBSD 3.0+ uses ELF
HostPlatform=i386-unknown-freebsd # hack again
TargetPlatform=i386-unknown-freebsd
--- ghc6-6.4.orig/configure
+++ ghc6-6.4/configure
@@ -1577,6 +1577,15 @@
HostVendor_CPP='unknown'
HostOS_CPP='linux'
;;
+i[3456]86-*-kfreebsd*-gnu)
+ HostPlatform=i386-unknown-kfreebsdgnu # hack again
+ TargetPlatform=i386-unknown-kfreebsdgnu
+ BuildPlatform=i386-unknown-kfreebsdgnu
+ HostPlatform_CPP='i386_unknown_kfreebsdgnu'
+ HostArch_CPP='i386'
+ HostVendor_CPP='unknown'
+ HostOS_CPP='kfreebsdgnu'
+ ;;
i[3456]86-*-freebsd[3-9]*) # FreeBSD 3.0+ uses ELF
HostPlatform=i386-unknown-freebsd # hack again
TargetPlatform=i386-unknown-freebsd
--===============0322503058==--
---------------------------------------
Received: (at 332977-close) by bugs.debian.org; 15 Oct 2005 12:48:06 +0000
>From [EMAIL PROTECTED] Sat Oct 15 05:48:06 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EQlRQ-0000VS-00; Sat, 15 Oct 2005 05:47:12 -0700
From: Ian Lynagh (wibble) <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#332977: fixed in ghc6 6.4.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 15 Oct 2005 05:47:12 -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
X-CrossAssassin-Score: 4
Source: ghc6
Source-Version: 6.4.1-1
We believe that the bug you reported is fixed in the latest version of
ghc6, which is due to be installed in the Debian FTP archive:
ghc6-doc_6.4.1-1_all.deb
to pool/main/g/ghc6/ghc6-doc_6.4.1-1_all.deb
ghc6-hopengl_6.4.1-1_i386.deb
to pool/main/g/ghc6/ghc6-hopengl_6.4.1-1_i386.deb
ghc6-libsrc_6.4.1-1_all.deb
to pool/main/g/ghc6/ghc6-libsrc_6.4.1-1_all.deb
ghc6-prof_6.4.1-1_i386.deb
to pool/main/g/ghc6/ghc6-prof_6.4.1-1_i386.deb
ghc6_6.4.1-1.diff.gz
to pool/main/g/ghc6/ghc6_6.4.1-1.diff.gz
ghc6_6.4.1-1.dsc
to pool/main/g/ghc6/ghc6_6.4.1-1.dsc
ghc6_6.4.1-1_i386.deb
to pool/main/g/ghc6/ghc6_6.4.1-1_i386.deb
ghc6_6.4.1.orig.tar.gz
to pool/main/g/ghc6/ghc6_6.4.1.orig.tar.gz
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.
Ian Lynagh (wibble) <[EMAIL PROTECTED]> (supplier of updated ghc6 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: Fri, 14 Oct 2005 10:44:34 +0000
Source: ghc6
Binary: ghc6-prof ghc6-hopengl ghc6 ghc6-libsrc ghc6-doc
Architecture: source all i386
Version: 6.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Ian Lynagh (wibble) <[EMAIL PROTECTED]>
Changed-By: Ian Lynagh (wibble) <[EMAIL PROTECTED]>
Description:
ghc6 - GHC - the Glasgow Haskell Compilation system
ghc6-doc - Documentation for the Glasgow Haskell Compilation system
ghc6-hopengl - HOpenGL libraries for the Glasgow Haskell Compilation system
ghc6-libsrc - Library Sources of GHC, the Glasgow Haskell Compilation system
ghc6-prof - Profiling libraries for the Glasgow Haskell Compilation system
Closes: 317069 319294 329322 332977
Changes:
ghc6 (6.4.1-1) unstable; urgency=low
.
* New upstream release. Closes: #329322.
* Relax the libgmp3-dev build-dep to make backporting easier.
* Don't force using gcc-3.3 to build; drop gcc-3.3 build-dep.
* Apply patch to add support for kfreebsdgnu to configure(.ac) and the
mangler. Closes: #332977.
* Add kfreebsd-i386 to ghc6_arches.
* Add missing deps on libx11-dev, libsm-dev, libice-dev, libxmu-dev,
libxi-dev, libc6-dev to ghc6-hopengl. Closes: #317069.
* Update (build-)dep xlibmesa-glu-dev to libglu1-xorg-dev | libglu-dev.
* Standards version 3.6.1 -> 3.6.2.
* Upstream fixed a panic to give a sensible error message.
Closes: #319294.
Files:
9e6f468d25779542e2274062eb168ea3 870 devel optional ghc6_6.4.1-1.dsc
7089ccd8c01309ffc8c0bbf2f32453e6 8009831 devel optional ghc6_6.4.1.orig.tar.gz
e09b555282cb354643ca208251058a5a 22041 devel optional ghc6_6.4.1-1.diff.gz
a33d165cdb8b6f0c2c599fd12d7a2e31 1348136 doc optional ghc6-doc_6.4.1-1_all.deb
430551d31f53c1ed4059e155a98d716f 2339702 doc optional
ghc6-libsrc_6.4.1-1_all.deb
1a4549a878d9217b92298c748a10c5d1 14090340 devel optional ghc6_6.4.1-1_i386.deb
70ab902c7c5ddba3996ae78943e9c744 5457630 devel optional
ghc6-hopengl_6.4.1-1_i386.deb
f1028d2ee6c26f2825a8abada32673af 10879850 devel optional
ghc6-prof_6.4.1-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDUPdL63y6poDIPo4RAuGSAJ97OotBKUXa0o31FjV/p+ICJisvowCeNHAu
k/+Xsz7LzoN22Vgm93MSrhg=
=OO+Y
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]