Your message dated Fri, 15 Jul 2005 06:47:46 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#300104: fixed in gq 1.0beta1-3
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; 17 Mar 2005 17:05:56 +0000
>From [EMAIL PROTECTED] Thu Mar 17 09:05:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DByRX-0005Aa-00; Thu, 17 Mar 2005 09:05:56 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
        id 1DByRW-0002xs-N1; Thu, 17 Mar 2005 18:05:54 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: gq: FTBFS (amd64/gcc-4.0): array type has incomplete element type
Message-Id: <[EMAIL PROTECTED]>
Date: Thu, 17 Mar 2005 18:05:54 +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: gq
Severity: normal
Tags: patch

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

x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I..   -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -DXTHREADS -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 
-I/usr/include/pango-1.0 -I/usr/include/freetype2  -Wall -g -O2 -DXTHREADS 
-I/usr/include/libxml2 -W -Wno-unused -Wmissing-declarations -Wcast-align 
-Wpointer-arith -Wfloat-equal -DLOCALEDIR=\"/usr/share/locale\" -c `test -f 
'mainwin.c' || echo './'`mainwin.c
In file included from mainwin.c:38:
configfile.h:223: error: array type has incomplete element type
configfile.h:224: error: array type has incomplete element type
configfile.h:225: error: array type has incomplete element type
mainwin.c: In function 'enter_last_of_mode':
mainwin.c:91: warning: cast to pointer from integer of different size
mainwin.c: In function 'remove_tab':
mainwin.c:478: warning: cast to pointer from integer of different size
make[3]: *** [mainwin.o] Error 1
make[3]: Leaving directory `/gq-1.0beta1/src'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/gq-1.0beta1/src/configfile.c ./src/configfile.c
--- ../tmp-orig/gq-1.0beta1/src/configfile.c    2003-11-03 22:34:52.000000000 
+0100
+++ ./src/configfile.c  2005-03-17 17:54:25.589699297 +0100
@@ -54,7 +54,7 @@
 struct gq_config *config;
 GList *transient_servers = NULL;
 
-const struct tokenlist token_searchargument[] = {
+const struct tokenlist *token_searchargument = {
      { SEARCHARG_BEGINS_WITH, "Begins with",   NULL },
      { SEARCHARG_ENDS_WITH,   "Ends with",     NULL },
      { SEARCHARG_CONTAINS,    "Contains",      NULL },
@@ -62,14 +62,14 @@
      { 0, "",                                  NULL }
 };
 
-const struct tokenlist token_bindtype[] = {
+const struct tokenlist *token_bindtype = {
      { BINDTYPE_SIMPLE,    "Simple",           NULL },
      { BINDTYPE_KERBEROS,  "Kerberos",         NULL },
      { BINDTYPE_SASL,      "SASL",             NULL },
      { 0, "",                                  NULL }
 };
 
-const struct tokenlist token_ldifformat[] = {
+const struct tokenlist *token_ldifformat = {
      { LDIF_UMICH,         "UMich",            NULL },
      { LDIF_V1,            "Version1",         NULL },
      { 0, "",                                  NULL }
diff -urN ../tmp-orig/gq-1.0beta1/src/configfile.h ./src/configfile.h
--- ../tmp-orig/gq-1.0beta1/src/configfile.h    2003-11-03 22:34:52.000000000 
+0100
+++ ./src/configfile.h  2005-03-17 17:54:04.271722654 +0100
@@ -220,9 +220,9 @@
 extern struct gq_config *config;
 extern GList *transient_servers;
 
-extern const struct tokenlist token_bindtype[];
-extern const struct tokenlist token_ldifformat[];
-extern const struct tokenlist token_searchargument[];
+extern const struct tokenlist *token_bindtype;
+extern const struct tokenlist *token_ldifformat;
+extern const struct tokenlist *token_searchargument;
 
 #endif
 

---------------------------------------
Received: (at 300104-close) by bugs.debian.org; 15 Jul 2005 10:52:42 +0000
>From [EMAIL PROTECTED] Fri Jul 15 03:52:42 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 1DtNoA-0006FP-00; Fri, 15 Jul 2005 03:52:42 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DtNjO-0004EV-00; Fri, 15 Jul 2005 06:47:46 -0400
From: Guido Trotter <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#300104: fixed in gq 1.0beta1-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Fri, 15 Jul 2005 06:47:46 -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: gq
Source-Version: 1.0beta1-3

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

gq_1.0beta1-3.diff.gz
  to pool/main/g/gq/gq_1.0beta1-3.diff.gz
gq_1.0beta1-3.dsc
  to pool/main/g/gq/gq_1.0beta1-3.dsc
gq_1.0beta1-3_i386.deb
  to pool/main/g/gq/gq_1.0beta1-3_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.
Guido Trotter <[EMAIL PROTECTED]> (supplier of updated gq 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, 15 Jul 2005 10:25:46 +0000
Source: gq
Binary: gq
Architecture: source i386
Version: 1.0beta1-3
Distribution: unstable
Urgency: low
Maintainer: Guido Trotter <[EMAIL PROTECTED]>
Changed-By: Guido Trotter <[EMAIL PROTECTED]>
Description: 
 gq         - GTK-based LDAP client
Closes: 242790 300104
Changes: 
 gq (1.0beta1-3) unstable; urgency=low
 .
   * Patch to build with gcc4.0 (thanks to Andreas Jochens) (closes: #300104)
   * Update Standards-Versions
   * gq is officially unmaintained upstream! How sad... What should we do?
   * update the NEWS file (closes: #242790)
Files: 
 7e8abdc08b3e1c9cf1294dbe219419a0 619 net optional gq_1.0beta1-3.dsc
 014b16dec25f30ef4f88be89138843ed 29291 net optional gq_1.0beta1-3.diff.gz
 173cc349eeef682e217c8eadea513bd0 186730 net optional gq_1.0beta1-3_i386.deb

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

iD8DBQFC15EDhImxTYgHUpsRAgdyAJ9WnskqSRw3RyMLfnojsy3KcZJqnwCfSbJh
RgQgUzlghJedGPnaInkHY/Q=
=kLvz
-----END PGP SIGNATURE-----


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

Reply via email to