Your message dated Tue, 06 Sep 2005 05:47:06 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#326844: fixed in robotour 3.1.1-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; 6 Sep 2005 06:09:50 +0000
>From [EMAIL PROTECTED] Mon Sep 05 23:09:50 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c173076.adsl.hansenet.de (localhost.localdomain) [213.39.173.76]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1ECWeU-0004GB-00; Mon, 05 Sep 2005 23:09:50 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
id 1ECWeQ-0003hI-2H; Tue, 06 Sep 2005 08:09:46 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: robotour: FTBFS: Missing Build-Depends on 'xlibmesa-gl-dev,
libglu1-xorg-dev'
Message-Id: <[EMAIL PROTECTED]>
Date: Tue, 06 Sep 2005 08:09:46 +0200
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Package: robotour
Version: 3.1.1-2
Severity: serious
Tags: patch
When building 'robotour' in a clean 'unstable' chroot,
I get the following error:
checking for gcc... gcc
checking for C compiler default output... configure: error: C compiler cannot
create executables
See `config.log' for more details.
configure: error: /bin/sh './configure' failed for libRT
make: *** [build-stamp] Error 1
Please add the missing Build-Depends on 'xlibmesa-gl-dev, libglu1-xorg-dev'
to debian/control.
The attached patch also fixes some casts from pointers to (int) which
do not work on 64-bit architectures.
Regards
Andreas Jochens
diff -urN ../tmp-orig/robotour-3.1.1/debian/control ./debian/control
--- ../tmp-orig/robotour-3.1.1/debian/control 2005-09-06 05:59:26.000000000
+0000
+++ ./debian/control 2005-09-06 05:59:20.000000000 +0000
@@ -2,7 +2,7 @@
Section: games
Priority: optional
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4), libwxgtk2.4-dev
+Build-Depends: debhelper, libwxgtk2.4-dev, xlibmesa-gl-dev, libglu1-xorg-dev
Standards-Version: 3.6.2
Package: robotour
diff -urN ../tmp-orig/robotour-3.1.1/robotour/robvis.cpp ./robotour/robvis.cpp
--- ../tmp-orig/robotour-3.1.1/robotour/robvis.cpp 2004-09-02
17:11:16.000000000 +0000
+++ ./robotour/robvis.cpp 2005-09-06 05:50:39.000000000 +0000
@@ -315,7 +315,7 @@
// Simulation.find(bot);
for(List<Bot*>::Node* n = curSim->bots.first(); n; n =
n->getNext())
{
- if(di.botID == (int)n->accessElement()) // here
it is
+ if(di.botID == (long)n->accessElement()) //
here it is
{
if(di.updateFrom(n->accessElement(),
true)) // data has changed
{
@@ -396,7 +396,7 @@
// debugInfo.find(affectedBot);
for(Map<int,DebugInfo>::Iterator iter = debugInfo.begin();
iter.hasElement();)
{
- if(iter.get().getValue().botID == (int)affectedBot)
+ if(iter.get().getValue().botID == (long)affectedBot)
{
DebugInfo& di = iter.get().getValue();
di.alive = false;
diff -urN ../tmp-orig/robotour-3.1.1/robotour/robwxstruct.cpp
./robotour/robwxstruct.cpp
--- ../tmp-orig/robotour-3.1.1/robotour/robwxstruct.cpp 2004-09-02
17:11:16.000000000 +0000
+++ ./robotour/robwxstruct.cpp 2005-09-06 05:51:58.000000000 +0000
@@ -115,13 +115,13 @@
bool DebugInfo::BankInfo::updateFrom(Bank* bank)
{
- if(id == (int)bank) {
+ if(id == (long)bank) {
hasChanged = false;
return hasChanged; // already up-to-date
}
hasChanged = true;
- id = (int)bank;
+ id = (long)bank;
owner = bank->owner->programNum;
if(bank->isSecret)
@@ -176,7 +176,7 @@
bool hasChanged = false; // the return value
ASSIGN_CHECK_CHANGE(this->alive, alive);
- ASSIGN_CHECK_CHANGE(botID, (int)bot);
+ ASSIGN_CHECK_CHANGE(botID, (long)bot);
botInfo = BotInfo(bot);
programName = bot->owner->headers["name"].value;
---------------------------------------
Received: (at 326844-close) by bugs.debian.org; 6 Sep 2005 12:49:44 +0000
>From [EMAIL PROTECTED] Tue Sep 06 05:49:44 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1ECcqw-00082E-00; Tue, 06 Sep 2005 05:47:06 -0700
From: Matej Vela <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#326844: fixed in robotour 3.1.1-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 06 Sep 2005 05:47: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
Source: robotour
Source-Version: 3.1.1-3
We believe that the bug you reported is fixed in the latest version of
robotour, which is due to be installed in the Debian FTP archive:
robotour_3.1.1-3.diff.gz
to pool/main/r/robotour/robotour_3.1.1-3.diff.gz
robotour_3.1.1-3.dsc
to pool/main/r/robotour/robotour_3.1.1-3.dsc
robotour_3.1.1-3_i386.deb
to pool/main/r/robotour/robotour_3.1.1-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.
Matej Vela <[EMAIL PROTECTED]> (supplier of updated robotour 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, 6 Sep 2005 14:31:57 +0200
Source: robotour
Binary: robotour
Architecture: source i386
Version: 3.1.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group <[EMAIL PROTECTED]>
Changed-By: Matej Vela <[EMAIL PROTECTED]>
Description:
robotour - Control mobile robots in this programmer's game
Closes: 326834 326844
Changes:
robotour (3.1.1-3) unstable; urgency=low
.
* QA upload.
* Automatically update config.guess and config.sub from autotools-dev.
Closes: #326834.
* Add build dependencies on xlibmesa-gl-dev and libglu1-xorg-dev.
Closes: #326844.
* Store id pointers in `void *' as `int' is not wide enough on 64-bit
architectures.
Files:
0c1cff80f9af9817f1c9e2cbb3fa00ce 628 games optional robotour_3.1.1-3.dsc
bb3bbe7101c7573ceabb5ccc95e49d21 4824 games optional robotour_3.1.1-3.diff.gz
1c3fd08d57c78d735eed7bd8fd1eaa61 631134 games optional
robotour_3.1.1-3_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDHYyWxBYivKllgY8RAu2yAJ9tyNT/9vx/u1cUlwwWi/qpNRwGbgCglGye
geoqM/3k9P8pf6BkUGsJPzo=
=7XM4
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]