Your message dated Thu, 14 Jul 2005 12:17:16 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#286368: fixed in htcheck 1:1.2.3-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; 19 Dec 2004 22:03:03 +0000
>From [EMAIL PROTECTED] Sun Dec 19 14:03:03 2004
Return-path: <[EMAIL PROTECTED]>
Received: from d020027.adsl.hansenet.de (localhost.localdomain) [80.171.20.27]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Cg98o-0001uh-00; Sun, 19 Dec 2004 14:03:02 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1Cg9DI-0000su-RW; Sun, 19 Dec 2004 23:07:52 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: htcheck: FTBFS (amd64/gcc-4.0): cast from 'MYSQL*' to 'int' loses
precision
Message-Id: <[EMAIL PROTECTED]>
Date: Sun, 19 Dec 2004 23:07:52 +0100
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: htcheck
Severity: normal
Tags: patch
When building 'htcheck' on amd64 with gcc-4.0,
I get the following error:
g++ -DHAVE_CONFIG_H -I. -I. -I../include
-DDEFAULT_CONFIG_FILE=\"/etc/htcheck/htcheck.conf\" -I../include -I../htlib
-I../htcommon -I../htmysql -I../htnet -I../htparsing -I../htcheck -Wall
-I/usr/include/mysql -g -O2 -Wall -fno-rtti -fno-exceptions -c Htmysql.cc -o
Htmysql.o
Htmysql.cc: In member function 'virtual int Htmysql::Connect(const char*, const
char*, const char*, const char*, uint, char*, uint)':
Htmysql.cc:73: error: cast from 'MYSQL*' to 'int' loses precision
make[2]: *** [Htmysql.lo] Error 1
make[2]: Leaving directory `/htcheck-1.2.3/htmysql'
With the attached patch 'htcheck' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/htcheck-1.2.3/htmysql/Htmysql.cc ./htmysql/Htmysql.cc
--- ../tmp-orig/htcheck-1.2.3/htmysql/Htmysql.cc 2003-12-30
10:39:22.000000000 +0100
+++ ./htmysql/Htmysql.cc 2004-12-19 22:52:15.224802968 +0100
@@ -63,12 +63,12 @@
// Connect to a mysql server
-int Htmysql::Connect (const char *host, const char *user, const char *passwd,
+long Htmysql::Connect (const char *host, const char *user, const char *passwd,
const char *db, uint port, char *unix_socket,
uint client_flag)
{
- return (int) ::mysql_real_connect ( &mysql, (host?host:"localhost"),
+ return (long) ::mysql_real_connect ( &mysql, (host?host:"localhost"),
user, passwd, db,
port, unix_socket, client_flag);
}
diff -urN ../tmp-orig/htcheck-1.2.3/htmysql/Htmysql.h ./htmysql/Htmysql.h
--- ../tmp-orig/htcheck-1.2.3/htmysql/Htmysql.h 2003-12-30 10:39:22.000000000
+0100
+++ ./htmysql/Htmysql.h 2004-12-19 22:52:24.165443784 +0100
@@ -45,7 +45,7 @@
// Connects with a MySQL database
- virtual int Connect( const char *host=NULL, const char *user=NULL,
+ virtual long Connect( const char *host=NULL, const char *user=NULL,
const char *passwd=NULL, const char *db=NULL,
uint port=0, char *unix_socket=NULL,
uint client_flag=0);
---------------------------------------
Received: (at 286368-close) by bugs.debian.org; 14 Jul 2005 16:23:31 +0000
>From [EMAIL PROTECTED] Thu Jul 14 09:23:31 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 1Dt6Ul-0007I4-00; Thu, 14 Jul 2005 09:23:31 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Dt6Oi-0004wT-00; Thu, 14 Jul 2005 12:17:16 -0400
From: Marco Nenciarini <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#286368: fixed in htcheck 1:1.2.3-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Thu, 14 Jul 2005 12:17:16 -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:
Source: htcheck
Source-Version: 1:1.2.3-2
We believe that the bug you reported is fixed in the latest version of
htcheck, which is due to be installed in the Debian FTP archive:
htcheck-php_1.2.3-2_all.deb
to pool/main/h/htcheck/htcheck-php_1.2.3-2_all.deb
htcheck_1.2.3-2.diff.gz
to pool/main/h/htcheck/htcheck_1.2.3-2.diff.gz
htcheck_1.2.3-2.dsc
to pool/main/h/htcheck/htcheck_1.2.3-2.dsc
htcheck_1.2.3-2_i386.deb
to pool/main/h/htcheck/htcheck_1.2.3-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.
Marco Nenciarini <[EMAIL PROTECTED]> (supplier of updated htcheck 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: Thu, 14 Jul 2005 17:48:33 +0200
Source: htcheck
Binary: htcheck-php htcheck
Architecture: source i386 all
Version: 1:1.2.3-2
Distribution: unstable
Urgency: low
Maintainer: Marco Nenciarini <[EMAIL PROTECTED]>
Changed-By: Marco Nenciarini <[EMAIL PROTECTED]>
Description:
htcheck - Utility for checking web site for dead/external links
htcheck-php - Simple php interface to database generated by ht://Check
Closes: 286368
Changes:
htcheck (1:1.2.3-2) unstable; urgency=low
.
* Removed useless dependancies against libapache2?-mod-php4
* Bumped standards version to 3.6.2
* Rebuilded package with new gcc-3.4/4.0 ABI
* Correct configure.it to handle the correct return type
of MySQL load_defaults() funtion
* Applied patch from Andreas Jochens
* Closes: #286368: FTBFS (amd64/gcc-4.0): cast from 'MYSQL*' to 'int'
loses precision
* Added debian/watch file
Files:
b39713df4319c8eb406be52ed15bbb9b 639 web extra htcheck_1.2.3-2.dsc
9dcb2a56a57af63b8059f79ba6291018 192694 web extra htcheck_1.2.3-2.diff.gz
6cd583a367cae857d88dd4ad9f1e5b76 55380 web extra htcheck-php_1.2.3-2_all.deb
34ca0b93fce1298ce53d62f117d72592 482530 web extra htcheck_1.2.3-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFC1orSaGRzDfCV5eQRAtHoAJ49rnGiDkQDcY6UwNwI0uGTQapDPACdHqsP
ygl/OMl71qqHSGgE9wgq8xE=
=PSe1
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]