Your message dated Tue, 18 Oct 2005 03:02:06 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#289318: fixed in dctc 0.85.9-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; 8 Jan 2005 14:30:06 +0000
>From [EMAIL PROTECTED] Sat Jan 08 06:30:06 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c214218.adsl.hansenet.de (localhost.localdomain)
[213.39.214.218]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CnHbR-0007FL-00; Sat, 08 Jan 2005 06:30:05 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CnHhD-0003X2-Tw; Sat, 08 Jan 2005 15:36:03 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: dctc: FTBFS (gcc-4.0/amd64)
Message-Id: <[EMAIL PROTECTED]>
Date: Sat, 08 Jan 2005 15:36: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: dctc
Severity: normal
Tags: patch
The configure script stops if it detects that gcc-4.0 is used to compile
the package. After fixing this by adding 4.0 to the allowed compiler
versions in configure and configure.in, I get the following gcc-4.0 related
error:
if x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I.. -pthread -I/usr/include/glib-2$
-c -o user_manage.o `test -f 'user_manage.c' || echo './'`user_manage.c; \
then mv -f ".deps/user_manage.Tpo" ".deps/user_manage.Po"; \
else rm -f ".deps/user_manage.Tpo"; exit 1; \
fi
user_manage.c:47: error: static declaration of 'hub_user_xtra_info' follows non$
user_manage.h:30: error: previous declaration of 'hub_user_xtra_info' was here
user_manage.c:50: error: static declaration of 'hub_user_uinfo' follows non-sta$
user_manage.h:34: error: previous declaration of 'hub_user_uinfo' was here
make[3]: *** [user_manage.o] Error 1
make[3]: Leaving directory `/dctc-0.85.9/src'
The attached patch fixes this. It also changes the Build-Depends
from 'libdb3-dev' to 'libdb4.3-dev' in debian/control.
'libdb3-dev' has some problems on amd64.
With the attached patch, 'dctc' can be compiled on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/dctc-0.85.9/configure ./configure
--- ../tmp-orig/dctc-0.85.9/configure 2005-01-08 15:26:13.335298792 +0100
+++ ./configure 2005-01-08 15:26:11.405592152 +0100
@@ -20164,56 +20164,6 @@
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
-if test "$GCC" = yes; then
- echo "$as_me:$LINENO: checking GCC version" >&5
-echo $ECHO_N "checking GCC version... $ECHO_C" >&6
- cc_version=`$CC -dumpversion 2>&1`
- if test "$?" -gt 0; then
- cc_version="not found"
- fi
- case $cc_version in
- '')
- echo "$as_me:$LINENO: result: $cc_version" >&5
-echo "${ECHO_T}$cc_version" >&6
- bad_cc="yes"
- ;;
- 2.95.*|3.*)
- echo "$as_me:$LINENO: result: $cc_version" >&5
-echo "${ECHO_T}$cc_version" >&6
- bad_cc="no"
- ;;
- 'not found')
- echo "$as_me:$LINENO: result: $cc_version" >&5
-echo "${ECHO_T}$cc_version" >&6
- bad_cc="yes"
- ;;
- *)
- echo "$as_me:$LINENO: result: $cc_version" >&5
-echo "${ECHO_T}$cc_version" >&6
- bad_cc="yes"
- ;;
- esac
-
- if test "$bad_cc" = "yes" ; then
- cat <<EOF
-================================================================================
-*** Please downgrade/upgrade C compiler to gcc-2.95.x or gcc-3.x version! ***
-
-DO *NOT* REPORT BUGS unless you can reproduce them after recompiling with
2.95.x
-or 3.0.x version!
-
-Note for gcc 2.96 users: some versions of this compiler are known to miscompile
-programs. If you get compile errors, first upgrade to the latest 2.96 release
-(but minimum 2.96-85) and try again. If the problem still exists, try with
-gcc 3.0.x (or 2.95.x) *BEFORE* reporting bugs!
-
-Press return to resume configuration (CTRL-C to abort).
-================================================================================
-EOF
- read dummy
- fi
-fi
-
# Extract the first word of "libgcrypt-config", so it can be a program name
with args.
set dummy libgcrypt-config; ac_word=$2
echo "$as_me:$LINENO: checking for $ac_word" >&5
diff -urN ../tmp-orig/dctc-0.85.9/configure.in ./configure.in
--- ../tmp-orig/dctc-0.85.9/configure.in 2004-01-09 19:17:46.000000000
+0100
+++ ./configure.in 2005-01-08 15:25:49.228963512 +0100
@@ -16,53 +16,6 @@
AC_PROG_MAKE_SET
AC_PROG_INSTALL
-dnl checking compiler version
-dnl GCC is defined by AC_PROG_CC and is set to "yes" if the C compiler is GCC
-if test "$GCC" = yes; then
- AC_MSG_CHECKING(GCC version)
- cc_version=`$CC -dumpversion 2>&1`
- if test "$?" -gt 0; then
- cc_version="not found"
- fi
- case $cc_version in
- '')
- AC_MSG_RESULT($cc_version, bad)
- bad_cc="yes"
- ;;
- 2.95.*|3.*)
- AC_MSG_RESULT($cc_version, ok)
- bad_cc="no"
- ;;
- 'not found')
- AC_MSG_RESULT($cc_version, bad)
- bad_cc="yes"
- ;;
- *)
- AC_MSG_RESULT($cc_version, bad)
- bad_cc="yes"
- ;;
- esac
-
- if test "$bad_cc" = "yes" ; then
- cat <<EOF
-================================================================================
-*** Please downgrade/upgrade C compiler to gcc-2.95.x or gcc-3.x version! ***
-
-DO *NOT* REPORT BUGS unless you can reproduce them after recompiling with
2.95.x
-or 3.0.x version!
-
-Note for gcc 2.96 users: some versions of this compiler are known to miscompile
-programs. If you get compile errors, first upgrade to the latest 2.96 release
-(but minimum 2.96-85) and try again. If the problem still exists, try with
-gcc 3.0.x (or 2.95.x) *BEFORE* reporting bugs!
-
-Press return to resume configuration (CTRL-C to abort).
-================================================================================
-EOF
- read dummy
- fi
-fi
-
dnl check for (open)ssl or libgcrypt
dnl First, try gcrypto
AC_CHECK_PROG(GCRYPT_CONFIG,libgcrypt-config,yes,no)
diff -urN ../tmp-orig/dctc-0.85.9/src/user_manage.c ./src/user_manage.c
--- ../tmp-orig/dctc-0.85.9/src/user_manage.c 2003-12-28 09:12:38.000000000
+0100
+++ ./src/user_manage.c 2005-01-08 15:25:49.228963512 +0100
@@ -44,10 +44,10 @@
GPtrArray *hub_user_list=NULL; /* list of all users connected to the
hub */
GPtrArray *hub_op_list=NULL; /* list of all op connected to the hub
(op are included in user list) */
-static GPtrArray *hub_user_xtra_info=NULL; /* array of extra data stored
for each hub user */
+GPtrArray *hub_user_xtra_info=NULL; /* array of extra data stored for each
hub user */
/* the nth pointer of this array is for the nth user of the
hub_user_list */
-static GPtrArray *hub_user_uinfo=NULL; /* it is the result of /UINFO
command for each user */
+GPtrArray *hub_user_uinfo=NULL; /* it is the result of /UINFO
command for each user */
/********************************/
/* free 1 user xtra information */
diff -urN ../tmp-orig/dctc-0.85.9/debian/control ./debian/control
--- ../tmp-orig/dctc-0.85.9/debian/control 2005-01-08 15:26:13.344297424
+0100
+++ ./debian/control 2005-01-08 15:25:49.228963512 +0100
@@ -2,7 +2,7 @@
Section: gnome
Priority: optional
Maintainer: Grzegorz Prokopski (Debian Developer) <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3.0.0), libglib2.0-dev, libdb3-dev,
libgcrypt11-dev, libxml2-dev, zlib1g-dev
+Build-Depends: debhelper (>> 3.0.0), libglib2.0-dev, libdb4.3-dev,
libgcrypt11-dev, libxml2-dev, zlib1g-dev
Standards-Version: 3.5.2
Package: dctc
---------------------------------------
Received: (at 289318-close) by bugs.debian.org; 18 Oct 2005 10:08:34 +0000
>From [EMAIL PROTECTED] Tue Oct 18 03:08:34 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1ERoII-0003E0-00; Tue, 18 Oct 2005 03:02:06 -0700
From: Luk Claes <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#289318: fixed in dctc 0.85.9-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 18 Oct 2005 03:02:06 -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: 2
Source: dctc
Source-Version: 0.85.9-2
We believe that the bug you reported is fixed in the latest version of
dctc, which is due to be installed in the Debian FTP archive:
dctc_0.85.9-2.diff.gz
to pool/main/d/dctc/dctc_0.85.9-2.diff.gz
dctc_0.85.9-2.dsc
to pool/main/d/dctc/dctc_0.85.9-2.dsc
dctc_0.85.9-2_i386.deb
to pool/main/d/dctc/dctc_0.85.9-2_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.
Luk Claes <[EMAIL PROTECTED]> (supplier of updated dctc 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, 18 Oct 2005 11:24:15 +0200
Source: dctc
Binary: dctc
Architecture: source i386
Version: 0.85.9-2
Distribution: unstable
Urgency: medium
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
Changed-By: Luk Claes <[EMAIL PROTECTED]>
Description:
dctc - Direct Connect Text Client
Closes: 264733 289318 289318 310351 310353 310354 310355
Changes:
dctc (0.85.9-2) unstable; urgency=medium
.
* Set maintainer to Debian QA Group.
* Fix gcc-4.0 compilation (Closes: #289318).
* Build depend on libdb4.3-dev (Closes: #289318).
* Update Standards-Version.
* Add debian/compat.
* Fixed manpage typos (Closes: #310351, #310353, #310354, #310355).
* Acknowledge NMU (Closes: #264733).
Files:
aac1e4e20a35316a5de895a306bb5864 645 gnome optional dctc_0.85.9-2.dsc
0f06c6df2d2034f40e80f80aa7f6f2f4 348352 gnome optional dctc_0.85.9-2.diff.gz
41060073a09b0c5ea4237fbe1cad6e42 239914 gnome optional dctc_0.85.9-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDVMEC5UTeB5t8Mo0RAozXAKCq3dtWz938mGl4ZrYlGFaB1Qiq6QCeJsHu
kzE4B1HsBBQa2B3Iu8L/n28=
=LrWG
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]