Your message dated Sun, 5 Feb 2006 01:12:08 +0100
with message-id <[EMAIL PROTECTED]>
and subject line [EMAIL PROTECTED]: mmv_1.01b-14_i386.changes ACCEPTED]
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 ---
>From [EMAIL PROTECTED] Wed Jul 21 01:56:34 2004
Received: (at submit) by bugs.debian.org; 21 Jul 2004 08:56:34 +0000
Return-path: <[EMAIL PROTECTED]>
Received: from c158051.adsl.hansenet.de (localhost) [213.39.158.51] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BnCtt-00085Y-00; Wed, 21 Jul 2004 01:56:34 -0700
Received: from aj by localhost with local (Exim 4.34)
        id 1BnCts-0001lT-9M; Wed, 21 Jul 2004 10:56:32 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: mmv: FTBFS with gcc-3.4:
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 21 Jul 2004 10:56:32 +0200
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.1 required=4.0 tests=BAYES_44,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: mmv
Severity: normal
Tags: patch

When building 'mmv' with gcc-3.4 I get the following error:

gcc -O2 -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64   -c -o mmv.o mmv.c
mmv.c:132: warning: conflicting types for built-in function 'malloc'
In file included from /usr/include/bits/string2.h:1211,
                 from /usr/include/string.h:375,
                 from mmv.c:189:
/usr/include/stdlib.h:556: error: conflicting types for 'malloc'
mmv.c:132: error: previous declaration of 'malloc' was here
/usr/include/stdlib.h:556: error: conflicting types for 'malloc'
mmv.c:132: error: previous declaration of 'malloc' was here
mmv.c: In function `init':
mmv.c:550: warning: implicit declaration of function `geteuid'
mmv.c:551: warning: implicit declaration of function `getuid'
mmv.c: In function `procargs':
mmv.c:627: warning: implicit declaration of function `exit'
mmv.c:662: warning: implicit declaration of function `setuid'
mmv.c:663: warning: implicit declaration of function `setgid'
mmv.c:663: warning: implicit declaration of function `getgid'
mmv.c: In function `parsepat':
mmv.c:789: warning: unused variable `havedot'
mmv.c: In function `trymatch':
mmv.c:1182: warning: suggest explicit braces to avoid ambiguous `else'
mmv.c: In function `badrep':
mmv.c:1255: warning: implicit declaration of function `access'
mmv.c: In function `badname':
mmv.c:1415: warning: unused variable `ext'
mmv.c: In function `checkdir':
mmv.c:1732: warning: suggest explicit braces to avoid ambiguous `else'
mmv.c:1725: warning: unused variable `newdirs'
mmv.c:1726: warning: unused variable `nfils'
mmv.c:1727: warning: unused variable `fils'
mmv.c: In function `takedir':
mmv.c:1808: warning: implicit declaration of function `qsort'
mmv.c: In function `match':
mmv.c:1909: warning: unused variable `olds'
mmv.c: In function `doreps':
mmv.c:2393: warning: passing arg 2 of `signal' from incompatible pointer type
mmv.c:2406: warning: suggest explicit braces to avoid ambiguous `else'
mmv.c:2426: warning: implicit declaration of function `link'
mmv.c:2429: warning: implicit declaration of function `symlink'
mmv.c: In function `snap':
mmv.c:2540: warning: implicit declaration of function `isatty'
mmv.c: In function `copymove':
mmv.c:2617: warning: implicit declaration of function `readlink'
mmv.c: In function `copy':
mmv.c:2678: warning: implicit declaration of function `close'
mmv.c:2697: warning: implicit declaration of function `read'
mmv.c:2698: warning: implicit declaration of function `write'
mmv.c:2734: warning: implicit declaration of function `unlink'
mmv.c:2636: warning: unused variable `c'
mmv.c: At top level:
mmv.c:444: warning: 'IDF' defined but not used
mmv.c:462: warning: 'hasdot' defined but not used
make[1]: *** [mmv.o] Error 1
make[1]: Leaving directory `/mmv-1.01b'
make: *** [build] Error 2

With the attached patch 'mmv' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/mmv-1.01b/Makefile ./Makefile
--- ../tmp-orig/mmv-1.01b/Makefile      2004-07-21 10:50:01.728054857 +0200
+++ ./Makefile  2004-07-21 10:45:20.334400365 +0200
@@ -1,7 +1,7 @@
 # Possible defines in CONF:
 #      IS_MSDOS IS_SYSV IS_V7 IS_BSD HAS_DIRENT HAS_RENAME MV_DIR
 
-CC             =gcc -traditional
+CC             =gcc
 LD             =$(CC)
 CONF           =-DIS_SYSV -DHAS_DIRENT -DHAS_RENAME
 CFLAGS         =-O2 $(CONF)
diff -urN ../tmp-orig/mmv-1.01b/mmv.c ./mmv.c
--- ../tmp-orig/mmv-1.01b/mmv.c 2004-07-21 10:50:01.728054857 +0200
+++ ./mmv.c     2004-07-21 10:49:31.254940646 +0200
@@ -88,6 +88,7 @@
 
 #endif
 
+#include <unistd.h>
 #include <stdio.h>
 #include <ctype.h>
 
@@ -127,10 +128,6 @@
 #include <sys/stat.h>
 #include <sys/file.h>
 
-extern char *getenv();
-extern long lseek();
-extern char *malloc();
-
 #ifdef HAS_DIRENT
 #include <dirent.h>
 typedef struct dirent DIRENTRY;
@@ -393,7 +390,7 @@
 static int snap(/* REP *first, REP *p */);
 static void showdone(/* REP *fin */);
 static void breakout(/*  */);
-static int breakrep(/* */);
+static void breakrep(int);
 static void breakstat(/* */);
 static void quit(/*  */);
 static int copymove(/* REP *p */);
@@ -2585,10 +2582,10 @@
 }
 
 
-static int breakrep()
+static void breakrep(int signum)
 {
        gotsig = 1;
-       return(1);
+       return;
 }
 
 


--- End Message ---
--- Begin Message ---
>From [EMAIL PROTECTED] Sat Feb 04 16:12:12 2006
Received: (at 260574-done) by bugs.debian.org; 5 Feb 2006 00:12:12 +0000
Return-path: <[EMAIL PROTECTED]>
Received: from quechua.inka.de
        ([193.197.184.2] helo=mail.inka.de ident=mail)
        by spohr.debian.org with esmtp (Exim 4.50)
        id 1F5XVk-0005hI-Et; Sat, 04 Feb 2006 16:12:12 -0800
Received: from calista.inka.de (p54a33a07.dip0.t-ipconnect.de [84.163.58.7])
        by mail.inka.de with esmtpsa 
        id 1F5XVi-0003Sj-OE; Sun, 05 Feb 2006 01:12:10 +0100
Received: from ecki by calista.inka.de with local   (Exim 3.35 #1 (Debian))
        id 1F5XVg-0002Qr-00; Sun, 05 Feb 2006 01:12:08 +0100
Date: Sun, 5 Feb 2006 01:12:08 +0100
From: Bernd Eckenfels <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED], [EMAIL PROTECTED],
        [EMAIL PROTECTED]
Subject: [EMAIL PROTECTED]: mmv_1.01b-14_i386.changes ACCEPTED]
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
User-Agent: Mutt/1.5.9i
Sender: Bernd Eckenfels <[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=-0.8 required=4.0 tests=BAYES_01,FROM_ENDS_IN_NUMS 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Version: 1.01b-14

thanks for the NMU, it is fixed here:

----- Forwarded message from Debian Installer <[EMAIL PROTECTED]> -----

Envelope-to: [EMAIL PROTECTED]
Delivery-date: Sun, 05 Feb 2006 00:50:16 +0100
From: Debian Installer <[EMAIL PROTECTED]>
To: Bernd Eckenfels <[EMAIL PROTECTED]>
X-Katie: $Revision: 1.65 $
Subject: mmv_1.01b-14_i386.changes ACCEPTED
X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on calista.inka.de
X-Spam-Level: 
X-Spam-Status: No, score=-2.6 required=4.7 tests=BAYES_00 autolearn=ham 
        version=3.0.3


Accepted:
mmv_1.01b-14.diff.gz
  to pool/main/m/mmv/mmv_1.01b-14.diff.gz
mmv_1.01b-14.dsc
  to pool/main/m/mmv/mmv_1.01b-14.dsc
mmv_1.01b-14_i386.deb
  to pool/main/m/mmv/mmv_1.01b-14_i386.deb
Announcing to debian-devel-changes@lists.debian.org


Thank you for your contribution to Debian.

----- End forwarded message -----

-- 
  (OO)     -- [EMAIL PROTECTED] --
 ( .. )    [EMAIL PROTECTED],linux.de,debian.org}  http://www.eckes.org/
  o--o   1024D/E383CD7E  [EMAIL PROTECTED]  v:+497211603874  f:+49721151516129
(O____O)  When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!

--- End Message ---

Reply via email to