Your message dated Tue, 17 May 2005 17:02:10 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#294318: fixed in mush 7.2.5unoff2-23
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 Feb 2005 07:27:08 +0000
>From [EMAIL PROTECTED] Tue Feb 08 23:27:08 2005
Return-path: <[EMAIL PROTECTED]>
Received: from d157137.adsl.hansenet.de (localhost.localdomain) 
[80.171.157.137] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CymFf-000360-00; Tue, 08 Feb 2005 23:27:08 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
        id 1CymFb-0004Ad-O1; Wed, 09 Feb 2005 08:27:03 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: mush: FTBFS (amd64/gcc-4.0): unrecognized command line option 
"-fwritable-strings"
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 09 Feb 2005 08:27:03 +0100
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: mush
Severity: normal
Tags: patch

When building 'mush' on amd64 with gcc-4.0,
I get the following error:

make[1]: Entering directory `/mush-7.2.5unoff2'
gcc -fwritable-strings -O2 -DSYSV -DUSG -DCURSES -DNO_COMMAS -DDEBIAN   -c -o 
commands.o commands.c
cc1: error: unrecognized command line option "-fwritable-strings"
make[1]: *** [commands.o] Error 1
make[1]: Leaving directory `/mush-7.2.5unoff2'
make: *** [build-stamp] Error 2

With the attached patch 'mush' can be compiled
on amd64 using gcc-4.0.

The patch includes a patch which was already necessary for gcc-3.4.

The patch also changes the Build-Depends to 'libreadline5-dev' in
debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/mush-7.2.5unoff2/debian/control ./debian/control
--- ../tmp-orig/mush-7.2.5unoff2/debian/control 2005-02-09 08:16:25.532983951 
+0100
+++ ./debian/control    2005-02-08 23:01:35.000000000 +0100
@@ -2,7 +2,7 @@
 Section: non-free/mail
 Priority: optional
 Maintainer: Pawel Wiecek <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.1.16), libncurses5-dev, libreadline4-dev
+Build-Depends: debhelper (>= 4.1.16), libncurses5-dev, libreadline5-dev
 Standards-Version: 3.6.1
 
 Package: mush
diff -urN ../tmp-orig/mush-7.2.5unoff2/loop.c ./loop.c
--- ../tmp-orig/mush-7.2.5unoff2/loop.c 2005-02-09 08:16:25.521986087 +0100
+++ ./loop.c    2005-02-08 23:01:24.000000000 +0100
@@ -22,7 +22,6 @@
 #define isdelimeter(c) (index(" \t;|", c))
 
 char *alias_expand(), *hist_expand(), *reference_hist(), *hist_from_str();
-char *calloc();
 
 struct history {
     int histno;
diff -urN ../tmp-orig/mush-7.2.5unoff2/makefile.linux ./makefile.linux
--- ../tmp-orig/mush-7.2.5unoff2/makefile.linux 2005-02-09 08:16:25.538982786 
+0100
+++ ./makefile.linux    2005-02-08 23:02:02.000000000 +0100
@@ -39,11 +39,11 @@
 OPT_CFLAGS = -O6 -fomit-frame-pointer
 #OPT_CFLAGS = -g
 SYS_CFLAGS = -DSYSV -DUSG
-CFLAGS= -fwritable-strings $(OPT_CFLAGS) $(SYS_CFLAGS) -DCURSES -DNO_COMMAS \
+CFLAGS= $(OPT_CFLAGS) $(SYS_CFLAGS) -DCURSES -DNO_COMMAS \
        $(OTHER_CFLAGS)
 # NO_COMMAS included because it's needed by Qmail (which is used by damn many
 # people including myself) and shouldn't hurt anyone anyway
-#CFLAGS= -I /usr/include/ncurses -fwritable-strings -g -m486 -DSYSV -DUSG 
-DCURSES -DSIGRET=void -DENV_MAIL
+#CFLAGS= -I /usr/include/ncurses -g -m486 -DSYSV -DUSG -DCURSES -DSIGRET=void 
-DENV_MAIL
 LDFLAGS=
 #LDFLAGS=-g
 LIBS=          -lncurses #-lPW
diff -urN ../tmp-orig/mush-7.2.5unoff2/mush.h ./mush.h
--- ../tmp-orig/mush-7.2.5unoff2/mush.h 2005-02-09 08:16:25.526985116 +0100
+++ ./mush.h    2005-02-08 23:01:24.000000000 +0100
@@ -65,11 +65,6 @@
 #include <setjmp.h>
 #include "strings.h"
 
-extern char
-    *malloc(),         /* allocate memory */
-    *calloc(),         /* allocate and clear memory */
-    *realloc();                /* re-allocate memory */
-
 extern void
     free_vec(),                /* free a malloc'ed argv */
     xfree();           /* free malloc'ed pointers */
diff -urN ../tmp-orig/mush-7.2.5unoff2/pop.c ./pop.c
--- ../tmp-orig/mush-7.2.5unoff2/pop.c  2005-02-09 08:16:25.531984146 +0100
+++ ./pop.c     2005-02-08 23:01:24.000000000 +0100
@@ -46,11 +46,6 @@
 #include <string.h>
 #include <strings.h>
 
-#if 0
-extern char *
-strstr( /* char *, char * */ );
-#endif
-
 #include <netdb.h>
 #include <errno.h>
 #include <stdio.h>
@@ -60,32 +55,6 @@
 #define strerror(eno)  sys_errlist[eno]
 #endif
 
-extern char *
-getenv( /* char * */ );
-extern char *
-getlogin( /* void */ );
-extern char *
-getpass( /* char * */ );
-extern int 
-getuid( /* void */ );
-extern void 
-bzero( /* char *, int */ ), bcopy( /* char *, char *, int */ );
-extern int 
-socket( /* int, int, int */ );
-extern int 
-connect( /* int, struct sockaddr *, int */ );
-extern int 
-close( /* int */ );
-extern int 
-read( /* int, char *, int */ ), write( /* int, char *, int */ );
-extern int 
-atoi( /* char * */ );
-
-#if !(defined(vax) && defined(__GNUC__))
-extern int 
-fprintf( /* FILE *, char *, ... */ );
-#endif /* !(vax && __GNUC__) */
-
 #ifdef KERBEROS
 extern int 
 krb_sendauth( /* long, int, KTEXT, char *, char *, char *, u_long, MSG_DAT **,

---------------------------------------
Received: (at 294318-close) by bugs.debian.org; 17 May 2005 21:12:27 +0000
>From [EMAIL PROTECTED] Tue May 17 14:12:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DY9MY-0003ML-00; Tue, 17 May 2005 14:12:27 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DY9Cc-0001ux-00; Tue, 17 May 2005 17:02:10 -0400
From: Pawel Wiecek <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#294318: fixed in mush 7.2.5unoff2-23
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 17 May 2005 17:02:10 -0400
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-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-Spam-Level: 
X-CrossAssassin-Score: 2

Source: mush
Source-Version: 7.2.5unoff2-23

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

mush-src_7.2.5unoff2-23_all.deb
  to pool/non-free/m/mush/mush-src_7.2.5unoff2-23_all.deb
mush_7.2.5unoff2-23.diff.gz
  to pool/non-free/m/mush/mush_7.2.5unoff2-23.diff.gz
mush_7.2.5unoff2-23.dsc
  to pool/non-free/m/mush/mush_7.2.5unoff2-23.dsc



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.
Pawel Wiecek <[EMAIL PROTECTED]> (supplier of updated mush 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, 17 May 2005 21:42:10 +0200
Source: mush
Binary: mush-src
Architecture: source all
Version: 7.2.5unoff2-23
Distribution: unstable
Urgency: low
Maintainer: Pawel Wiecek <[EMAIL PROTECTED]>
Changed-By: Pawel Wiecek <[EMAIL PROTECTED]>
Description: 
 mush-src   - The mail user shell -- source only package
Closes: 294318 302175
Changes: 
 mush (7.2.5unoff2-23) unstable; urgency=low
 .
   * Applied patch from Andreas Jochens <[EMAIL PROTECTED]> to fix building 
problems
     on amd64 (closes: #294318)
   * Updated french translation of debconf templates (closes: #302175)
Files: 
 2206a99ed26b81cf4e9629c0ab589fd9 688 non-free/mail extra 
mush_7.2.5unoff2-23.dsc
 e32572256c98ef6aacb80cdcb1ad0287 138573 non-free/mail extra 
mush_7.2.5unoff2-23.diff.gz
 1e0cbe52e549683682fd4df4251ff650 507256 non-free/mail extra 
mush-src_7.2.5unoff2-23_all.deb

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

iD8DBQFCikmiBOdjEO/Bh3ARAiusAJ9JpTIrhhw35p7AFmRX//f0uQEfvQCeKyE4
jXJSKpdIHTSZjTNqmC2PrGY=
=0Maq
-----END PGP SIGNATURE-----


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

Reply via email to