Your message dated Thu, 28 Jul 2005 08:02:07 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#290365: fixed in ircii-pana 1:1.1-2 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; 13 Jan 2005 19:51:04 +0000 >From [EMAIL PROTECTED] Thu Jan 13 11:51:04 2005 Return-path: <[EMAIL PROTECTED]> Received: from c173060.adsl.hansenet.de (localhost.localdomain) [213.39.173.60] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CpAzn-0005c0-00; Thu, 13 Jan 2005 11:51:03 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1CpAzY-0004DH-6K; Thu, 13 Jan 2005 20:50:48 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: ircii-pana: FTBFS (amd64/gcc-4.0): static declaration of 'toc_fd' follows non-static declaration Message-Id: <[EMAIL PROTECTED]> Date: Thu, 13 Jan 2005 20:50:48 +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: ircii-pana Severity: normal Tags: patch When building 'ircii-pana' on amd64 with gcc-4.0, I get the following error: make[3]: Entering directory `/ircii-pana-1.0-0c19.20030512/x86_64-linux/dll/aim/toc' cc -fPIC -I. -I/ircii-pana-1.0-0c19.20030512/x86_64-linux/include -I../../../../include -I../../../../dll/aim/toc -I../../../../dll/aim/toc/include -g -O2 -Wall -c ../../../../dll/aim/toc/toc.c ../../../../dll/aim/toc/toc.c:42: error: static declaration of 'toc_fd' follows non-static declaration ../../../../dll/aim/toc/toc.h:153: error: previous declaration of 'toc_fd' was here ../../../../dll/aim/toc/toc.c:43: error: static declaration of 'seqno' follows non-static declaration ../../../../dll/aim/toc/toc.h:154: error: previous declaration of 'seqno' was here ../../../../dll/aim/toc/toc.c:44: error: static declaration of 'peer_ver' follows non-static declaration ../../../../dll/aim/toc/toc.h:155: error: previous declaration of 'peer_ver' was here ../../../../dll/aim/toc/toc.c: In function 'roast_password': ../../../../dll/aim/toc/toc.c:305: warning: pointer targets in return differ in signedness make[3]: *** [toc.o] Error 1 make[3]: Leaving directory `/ircii-pana-1.0-0c19.20030512/x86_64-linux/dll/aim/toc' With the attached patch 'ircii-pana' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/dll/aim/toc/server.c ./dll/aim/toc/server.c --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/dll/aim/toc/server.c 2001-03-05 20:36:44.000000000 +0100 +++ ./dll/aim/toc/server.c 2005-01-13 19:55:29.585269054 +0100 @@ -7,14 +7,14 @@ #include <unistd.h> #include "toc.h" -static time_t lastsent = 0; +time_t lastsent = 0; time_t login_time = 0; int my_evil; int is_idle = 0; int lag_ms = 0; int time_to_idle = 600; int is_away = 0; -static struct timeval lag_tv; +struct timeval lag_tv; void serv_add_buddy(char *name) { diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/dll/aim/toc/toc.c ./dll/aim/toc/toc.c --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/dll/aim/toc/toc.c 2001-03-05 20:36:45.000000000 +0100 +++ ./dll/aim/toc/toc.c 2005-01-13 19:55:29.586268860 +0100 @@ -39,9 +39,9 @@ #include "toc.h" /* descriptor for talking to TOC */ -static int toc_fd; -static int seqno; -static unsigned int peer_ver=0; +int toc_fd; +int seqno; +unsigned int peer_ver=0; int state; /* static int inpa=-1; */ int permdeny = PERMIT_PERMITALL; diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/include/modval.h ./include/modval.h --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/include/modval.h 2002-11-29 15:41:17.000000000 +0100 +++ ./include/modval.h 2005-01-13 19:59:24.710677954 +0100 @@ -650,7 +650,7 @@ #define start_time ((time_t) *((time_t *)global[START_TIME])) #define idle_time() ((time_t) *((time_t *)global[IDLE_TIME]())) -#define loading_global ((int) *((int *)global[LOADING_GLOBAL])) +#define loading_global (*((int *)global[LOADING_GLOBAL])) #define target_window (*((Window **)global[TARGET_WINDOW])) #define current_window (*((Window **)global[CURRENT_WINDOW])) #define invisible_list (*((Window **)global[INVISIBLE_LIST])) @@ -665,12 +665,12 @@ #define dll_variable (*((IrcVariableDll **)global[DLL_VARIABLE])) #define dll_ctcp (*((CtcpEntryDll **)global[DLL_CTCP])) #define dll_window (*((WindowDll **)global[DLL_WINDOW])) -#define window_display ((int) *((int *)global[WINDOW_DISPLAY])) -#define status_update_flag ((int) *((int *)global[STATUS_UPDATE_FLAG])) +#define window_display (*((int *)global[WINDOW_DISPLAY])) +#define status_update_flag (*((int *)global[STATUS_UPDATE_FLAG])) #define tabkey_array (*((NickTab **)global[TABKEY_ARRAY])) #define autoreply_array (*((NickTab *)global[AUTOREPLY_ARRAY])) -#define identd ((int) *((int *)global[IDENTD_SOCKET])) -#define doing_notice ((int) *((int *)global[DOING_NOTICE])) +#define identd (*((int *)global[IDENTD_SOCKET])) +#define doing_notice (*((int *)global[DOING_NOTICE])) #define last_sent_msg_body (*((char **)global[LAST_SENT_MSG_BODY])) #define sent_nick (*((char **)global[SENT_NICK])) @@ -698,9 +698,9 @@ #ifdef GUI #ifndef MAIN_SOURCE #define lastclicklinedata ((char *) *global[LASTCLICKLINEDATA]) -#define contextx ((int) *((int *)global[CONTEXTX])) -#define contexty ((int) *((int *)global[CONTEXTY])) -#define guiipc ((int) *((int *)global[GUIIPC])) +#define contextx (*((int *)global[CONTEXTX])) +#define contexty (*((int *)global[CONTEXTY])) +#define guiipc (*((int *)global[GUIIPC])) #endif #define gui_mutex_lock() ((void (*)(void)) global[GUI_MUTEX_LOCK])() #define gui_mutex_unlock() ((void (*)(void))global[GUI_MUTEX_UNLOCK])() diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/ctcp.c ./source/ctcp.c --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/ctcp.c 2003-03-25 05:32:14.000000000 +0100 +++ ./source/ctcp.c 2005-01-13 19:55:29.586268860 +0100 @@ -176,7 +176,7 @@ /* CDE do ops and unban logging */ -static char *ctcp_type[] = +char *ctcp_type[] = { "PRIVMSG", "NOTICE" diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/term.c ./source/term.c --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/term.c 2003-02-26 09:11:07.000000000 +0100 +++ ./source/term.c 2005-01-13 19:55:29.588268472 +0100 @@ -92,7 +92,6 @@ #endif extern char *getenv(); -extern char *tparm(); /* * The old code assumed termcap. termcap is almost always present, but on diff -urN ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/timer.c ./source/timer.c --- ../tmp-orig/ircii-pana-1.0-0c19.20030512/source/timer.c 2002-02-27 08:29:43.000000000 +0100 +++ ./source/timer.c 2005-01-13 19:55:29.589268278 +0100 @@ -148,7 +148,7 @@ * This is put here on purpose -- we dont want any of the above functions * to have any knowledge of this struct. */ -static TimerList *PendingTimers; +TimerList *PendingTimers; static char *schedule_timer (TimerList *ntimer); static char *current_exec_timer = empty_string; --------------------------------------- Received: (at 290365-close) by bugs.debian.org; 28 Jul 2005 15:15:29 +0000 >From [EMAIL PROTECTED] Thu Jul 28 08:15:29 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1Dy9tf-0002Ny-00; Thu, 28 Jul 2005 08:02:07 -0700 From: Daniel Jacobowitz <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#290365: fixed in ircii-pana 1:1.1-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Thu, 28 Jul 2005 08:02:07 -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: ircii-pana Source-Version: 1:1.1-2 We believe that the bug you reported is fixed in the latest version of ircii-pana, which is due to be installed in the Debian FTP archive: bitchx-dev_1.1-2_i386.deb to pool/main/i/ircii-pana/bitchx-dev_1.1-2_i386.deb bitchx-gtk_1.1-2_i386.deb to pool/main/i/ircii-pana/bitchx-gtk_1.1-2_i386.deb bitchx-ssl_1.1-2_i386.deb to pool/main/i/ircii-pana/bitchx-ssl_1.1-2_i386.deb bitchx_1.1-2_i386.deb to pool/main/i/ircii-pana/bitchx_1.1-2_i386.deb ircii-pana_1.1-2.diff.gz to pool/main/i/ircii-pana/ircii-pana_1.1-2.diff.gz ircii-pana_1.1-2.dsc to pool/main/i/ircii-pana/ircii-pana_1.1-2.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. Daniel Jacobowitz <[EMAIL PROTECTED]> (supplier of updated ircii-pana 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: Wed, 27 Jul 2005 22:47:14 -0400 Source: ircii-pana Binary: bitchx-dev bitchx-ssl bitchx bitchx-gtk Architecture: source i386 Version: 1:1.1-2 Distribution: unstable Urgency: low Maintainer: Daniel Jacobowitz <[EMAIL PROTECTED]> Changed-By: Daniel Jacobowitz <[EMAIL PROTECTED]> Description: bitchx - Advanced Internet Relay Chat client bitchx-dev - Header files for BitchX bitchx-gtk - GTK interface for BitchX bitchx-ssl - SSL support for BitchX Closes: 290365 Changes: ircii-pana (1:1.1-2) unstable; urgency=low . * Use quilt to manage patches. * Add a patch from Andreas Jochens to support gcc 4.0 (Closes: #290365). * Add an SSL_CERTIFICATES variable which allows the client to supply a certificate. Files: 4b13bdb684cd2dfb542785a695130e2b 828 net optional ircii-pana_1.1-2.dsc 0bc5e34d960c564c73026fdf04e6a95f 55241 net optional ircii-pana_1.1-2.diff.gz 12eb535d677febf5e0f8fc47bdd032a0 1517338 net optional bitchx_1.1-2_i386.deb 3c2a1471722fa97372b9cf268abc2b6c 456528 net optional bitchx-gtk_1.1-2_i386.deb 483d16b475358514a95f9e7953437cde 435168 net optional bitchx-ssl_1.1-2_i386.deb 8166d0fcd6ff4102c0972deaf3c8c086 198324 devel optional bitchx-dev_1.1-2_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC6O3AbgOPXuCjg3cRAjr5AJ0eJ8V8ZKS6m4DVczlV6EsibNhG8wCfTwc8 9nzH6nIsiQHcGaG+zqGN4qg= =5n+J -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]