Your message dated Tue, 02 Jun 2026 12:56:58 +0000
with message-id <[email protected]>
and subject line Bug#1138062: Removed package(s) from unstable
has caused the Debian Bug report #1003310,
regarding soundmodem FTCBFS for architectures other than i686-pc-cygwin
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.)
--
1003310: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1003310
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: soundmodem
Version: 0.20-6
Tags: patch upstream
User: [email protected]
Usertags: ftcbfs
soundmodem fails to cross build from source, because its configure
script thinks that cross building means building for i686-pc-cygwin, but
there are many other architectures. It also thinks that during cross
building, pkg-config doesn't work, which happens to be the think that
just works on Debian. I'm attaching a patch to extend the cross build
support upstream. Please consider applying it.
Helmut
--- soundmodem-0.20.orig/configure.ac
+++ soundmodem-0.20/configure.ac
@@ -32,7 +32,7 @@
AC_OBJEXT
dnl check for cross compiler path
-if test x$cross_compiling = xyes; then
+if test x$cross_compiling = xyes && test "x$host_alias" = i686-pc-cygwin; then
AC_MSG_CHECKING(for cross compiler path)
if test -d /usr/local/cross/i686-pc-cygwin; then
CROSSCOMPPATH=/usr/local/cross/i686-pc-cygwin
@@ -137,25 +137,28 @@
LIBS="$LIBS -ldsound -lgdi32"
fi
-if test x$cross_compiling = xyes; then
- gtk=no
- xlibs="$LIBS"
- LIBS="$LIBS -L$CROSSCOMPPATH/gtk/lib"
- AC_CHECK_LIB(gtk,gtk_main,gtk=yes)
- LIBS="$xlibs"
- if test x$gtk = xyes; then
- GTK_CFLAGS="-I$CROSSCOMPPATH/gtk/include -I$CROSSCOMPPATH/gtk/include/glib -I$CROSSCOMPPATH/gtk/include/gdk"
- GTK_LIBS="-L$CROSSCOMPPATH/gtk/lib -lgtk -lgdk -lglib"
- PTHREAD_CFLAGS="-I$CROSSCOMPPATH/gtk/include"
- PTHREAD_LIBS="-L$CROSSCOMPPATH/gtk/lib"
+PKG_CHECK_MODULES([GTK],[gtk+-2.0 >= 2.6.0],,[
+ if test x$cross_compiling = xyes; then
+ gtk=no
+ xlibs="$LIBS"
+ LIBS="$LIBS -L$CROSSCOMPPATH/gtk/lib"
+ AC_CHECK_LIB(gtk,gtk_main,gtk=yes)
+ LIBS="$xlibs"
+ if test x$gtk = xyes; then
+ GTK_CFLAGS="-I$CROSSCOMPPATH/gtk/include -I$CROSSCOMPPATH/gtk/include/glib -I$CROSSCOMPPATH/gtk/include/gdk"
+ GTK_LIBS="-L$CROSSCOMPPATH/gtk/lib -lgtk -lgdk -lglib"
+ PTHREAD_CFLAGS="-I$CROSSCOMPPATH/gtk/include"
+ PTHREAD_LIBS="-L$CROSSCOMPPATH/gtk/lib"
+ fi
+ fi
+])
+PKG_CHECK_MODULES([XML],[libxml-2.0])
+PKG_CHECK_MODULES([AUDIOFILE],[audiofile],,[
+ if test x$cross_compiling = xyes && test "x$GTK_LIBS" != x; then
AUDIOFILE_CFLAGS="-I$CROSSCOMPPATH/audiofile/include"
AUDIOFILE_LIBS="-L$CROSSCOMPPATH/audiofile/lib -laudiofile"
fi
-else
- PKG_CHECK_MODULES(XML,libxml-2.0)
- PKG_CHECK_MODULES(GTK,gtk+-2.0 >= 2.6.0)
- PKG_CHECK_MODULES(AUDIOFILE,audiofile)
-fi
+])
dnl Check for recently introduced GTK symbols
xlibs="$LIBS"
--- End Message ---
--- Begin Message ---
Version: 0.20-8+rm
Dear submitter,
as the package soundmodem 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/1138062
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.
Thorsten Alteholz (the ftpmaster behind the curtain)
--- End Message ---