Your message dated Mon, 30 Oct 2006 09:32:10 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#395466: fixed in check 0.9.4-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)
--- Begin Message ---
Package: check
Version: 0.9.4-1
Severity: grave
Tags: patch upstream
[Justification: breaks any package using the AM_PATH_CHECK macro in
configure.ac]
AM_PATH_CHECK uses AC_MSG_WARN to warn about the deprecation of AM_PATH_CHECK
in favor of PKG_CHECK_MODULES. However, this causes the following error when
attempting to run autoconf:
autoreconf: running: /usr/bin/autoconf
configure.ac:13: error: possibly undefined macro: AM_PATH_CHECK
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:37: error: possibly undefined macro: PKG_CHECK_MODULES
autoreconf: /usr/bin/autoconf failed with exit status: 1
This occurs because autoconf complains whenever it sees an unexpanded symbol
which looks like it should have gotten expanded. The attached patch (written
by Jamey Sharp) fixes this problem by not letting autoconf see the full
strings AM_PATH_CHECK or PKG_CHECK_MODULES. Note that various attempts to use
empty bracket quotes or doublequotes do not seem to work correctly, either
failing to prevent attempted expansion, failing to avoid warning, or leaving
quote characters in the resulting message; the empty variable approach in the
attached patch represents the only successful method Jamey and I found which
avoids all of these problems. I have CCed the autoconf list, in the hopes
that they might have a better solution to the problem of writing the name of a
macro in an AC_MSG_WARN message.
This wouldn't make the package *completely* unusable, except that the package
doesn't actually ship the pkg-config file needed to use PKG_CHECK_MODULES,
which AM_PATH_CHECK suggests as a replacement. An additional bug report for
that
will follow shortly.
- Josh Triplett
--- check.m4.orig 2006-10-13 12:24:41.000000000 -0700
+++ check.m4 2006-10-26 23:55:54.000000000 -0700
@@ -4,8 +4,9 @@
AC_DEFUN([AM_PATH_CHECK],
[
- AC_MSG_WARN([[AM_PATH_CHECK() is deprecated]])
- AC_MSG_WARN([[use PKG_CHECK_MODULES([CHECK], [check >= 0.9.4]) instead]])
+ empty=
+ AC_MSG_WARN([A${empty}M_PATH_CHECK() is deprecated])
+ AC_MSG_WARN([[use P${empty}KG_CHECK_MODULES([CHECK], [check >= 0.9.4]) instead]])
AC_ARG_WITH([check],
[ --with-check=PATH prefix where check is installed [default=auto]])
signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: check
Source-Version: 0.9.4-2
We believe that the bug you reported is fixed in the latest version of
check, which is due to be installed in the Debian FTP archive:
check_0.9.4-2.diff.gz
to pool/main/c/check/check_0.9.4-2.diff.gz
check_0.9.4-2.dsc
to pool/main/c/check/check_0.9.4-2.dsc
check_0.9.4-2_i386.deb
to pool/main/c/check/check_0.9.4-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.
Robert Lemmen <[EMAIL PROTECTED]> (supplier of updated check 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: Mon, 30 Oct 2006 11:19:36 +0100
Source: check
Binary: check
Architecture: source i386
Version: 0.9.4-2
Distribution: unstable
Urgency: low
Maintainer: Robert Lemmen <[EMAIL PROTECTED]>
Changed-By: Robert Lemmen <[EMAIL PROTECTED]>
Description:
check - unit test framework for C
Closes: 395466 395467 395677
Changes:
check (0.9.4-2) unstable; urgency=low
.
* Fixed check.m4, thanks josh! (closes: #395466, #395467)
* Added binary-indep target (closes: #395677)
Files:
b1c2a6a4686323f78e1714aecca9dddb 559 devel optional check_0.9.4-2.dsc
57fc6f410bdd84cd378af2d7b28b0a8c 3906 devel optional check_0.9.4-2.diff.gz
69bed3452e533dc71fea293ac7b10497 94396 devel optional check_0.9.4-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)
iD8DBQFFRjCE5UTeB5t8Mo0RAtoCAJ4wvjiYEClF1LBtmO3Y5JvJSsJ9sQCfTRK6
ANUnrDAa4aillnukndryy6Q=
=mrI4
-----END PGP SIGNATURE-----
--- End Message ---