Your message dated Tue, 22 Jan 2008 16:54:06 -0600
with message-id <[EMAIL PROTECTED]>
and subject line Fwd: Bug#459672: fixed
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)
--- Begin Message ---
Package: aime
Severity: important
Tags: patch
Hi,
currently your package FTBFS on GNU/kFreeBSD with the following error:
> UNAME_MACHINE = i686
> UNAME_RELEASE = 6.2-1-686
> UNAME_SYSTEM = GNU/kFreeBSD
> UNAME_VERSION = #0 Mon Jan 15 10:21:36 CET 2007
> configure: error: cannot guess build type; you must specify one
> make: *** [configure-stamp] Error 1
Full build logs are available at
<http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=aime>.
This means that config.{guess,sub} are outdated, see
/usr/share/doc/autotools-dev/README.Debian.gz for the long story.
In short words: just replace your config.{guess,sub} scripts by those in
/usr/share/misc (package: autotools-dev), and eventually think of
autocopying them through your debian/rules (a B-D on autotools-dev is
then needed).
Once that done, there's still a bit to do, see the attached patch. Once
that done, the build runs OK.
Thanks in advance. Cheers,
--
Cyril Brulebois
--- aime-0.60.3/include/sysdep.h 2007-03-10 03:58:59.863147000 +0100
+++ aime-0.60.3/include/sysdep.h 2007-03-10 04:10:38.000000000 +0100
@@ -45,7 +45,7 @@
-#elif defined( linux )
+#elif defined( linux ) || defined( __FreeBSD_kernel__ )
#include <stdlib.h>
#include <ctype.h>
@@ -71,7 +71,10 @@
#include <sys/time.h>
#include <sys/types.h>
+/* Used apparently for SIGPWR (see main.cpp); there's none on GNU/kFreeBSD */
+#if !defined( __FreeBSD_kernel__ )
#include <asm/param.h>
+#endif
#include <rpc/types.h>
--- aime-0.60.3/src/main.cpp 2007-03-10 04:01:59.948220000 +0100
+++ aime-0.60.3/src/main.cpp 2007-03-10 04:10:28.000000000 +0100
@@ -272,7 +272,7 @@
if (!the_config.conf_flags->get_flag(CF_CRASHSIGNAL))
{
-#if !defined( __CYGWIN__ )
+#if !defined( __CYGWIN__ ) && !defined( __FreeBSD_kernel__ )
signal(SIGPWR,signal_shutdown);
#endif
@@ -319,7 +319,7 @@
{
Strings the_msg;
-#if defined( __CYGWIN__ )
+#if defined( __CYGWIN__ ) || defined( __FreeBSD_kernel__ )
the_msg.sprintf("*** Shutting down Mud after receiving signal %d\n",sig);
mainstruct->log_error(the_msg.str_show(),"signalhandling");
the_msg = "&+RSYSTEM MESSAGE: Server is shutting down.&*\n";
--- End Message ---
--- Begin Message ---
---------- Forwarded Message ----------
Subject: Bug#459672: fixed
Date: Tuesday 22 January 2008
From: Debian Archive Maintenance <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
We believe that the bug you reported is now fixed; the following
package(s) have been removed from unstable:
aime | 0.60.3-7.3 | source, alpha, amd64, arm, hppa, i386, ia64, m68k,
mips, mipsel, powerpc, s390, sparc
Note that the package(s) have simply been removed from the tag
database and may (or may not) still be in the pool; this is not a bug.
The package(s) will be physically removed automatically when no suite
references them (and in the case of source, when no binary references
it). Please also remember that the changes have been done on the
master archive (ftp-master.debian.org) and will not propagate to any
mirrors (ftp.debian.org included) until the next cron.daily run at the
earliest.
Packages are never removed from testing by hand. Testing tracks
unstable and will automatically remove packages which were removed
from unstable when removing them from testing causes no dependency
problems.
Bugs which have been reported against this package are not automatically
removed from the Bug Tracking System. Please check all open bugs and
close them or re-assign them to another package if the removed package
was superseded by another one.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED]
This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[EMAIL PROTECTED]
Debian distribution maintenance software
pp.
Joerg Jaspert (the ftpmaster behind the curtain)
-------------------------------------------------------
--- End Message ---