Your message dated Wed, 10 Apr 2024 16:38:12 +0000
with message-id <[email protected]>
and subject line Bug#1068397: Removed package(s) from unstable
has caused the Debian Bug report #930092,
regarding librsl FTCBFS: abuses AC_CHECK_FILE
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
930092: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930092
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: librsl
Version: 1.43-1.2
Tags: patch upstream
User: [email protected]
Usertags: ftcbfs
librsl fails to cross build from source, because it uses AC_CHECK_FILE
to search for static libraries. The macro is meant to check for files on
the host system, but librsl tries to find build system files. Please use
a simple test -f here. The attached patch fixes AC_CHECK_FILE usage. It
continues to fail to cross build due to #893023.
Helmut
--- librsl-1.43.orig/configure.in
+++ librsl-1.43/configure.in
@@ -66,10 +66,10 @@
L=""
if test "$L" = ""; then # Check for the file directly.
- AC_CHECK_FILE($prefix/lib/libetor.a, L="-letor -lrsl -letor"; AC_DEFINE(HAVE_LIBETOR))
+ AS_IF([test -f "$prefix/lib/libetor.a"], L="-letor -lrsl -letor"; AC_DEFINE(HAVE_LIBETOR))
fi
if test "$L" = ""; then # Check for the file directly.
- AC_CHECK_FILE(/usr/local/lib/libetor.a, L="-letor -lrsl -letor"; AC_DEFINE(HAVE_LIBETOR))
+ AS_IF([test -f "/usr/local/lib/libetor.a"], L="-letor -lrsl -letor"; AC_DEFINE(HAVE_LIBETOR))
fi
if test "$L" != ""; then # libetor exists.
--- End Message ---
--- Begin Message ---
Version: 1.43-1.2+rm
Dear submitter,
as the package librsl has just been removed from the Debian archive
unstable we hereby close the associated bug reports. We are sorry
that we couldn't deal with your issue properly.
For details on the removal, please see https://bugs.debian.org/1068397
The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.
Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.
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.
Scott Kitterman (the ftpmaster behind the curtain)
--- End Message ---
--
debian-science-maintainers mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-science-maintainers