Your message dated Sun, 13 Oct 2019 15:18:08 +0000
with message-id <e1ijfdi-000dzl...@fasolo.debian.org>
and subject line Bug#942264: Removed package(s) from unstable
has caused the Debian Bug report #879121,
regarding unixodbc-gui-qt FTCBFS: uses AC_CHECK_FILE for /usr/include
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 ow...@bugs.debian.org
immediately.)


-- 
879121: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=879121
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: unixodbc-gui-qt
Version: 2.3.0-4
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

unixodbc-gui-qt fails to cross build from source, because it searches
for headers with AC_CHECK_FILES. The latter macro is supposed to search
the host system, but we need the headers on the build system. Just
trying "test -e ..." is good here. After doing so, unixodbc-gui-qt cross
builds successfully. Please consider applying the attached patch.

Helmut
diff -u unixodbc-gui-qt-2.3.0/qt.m4 unixodbc-gui-qt-2.3.0/qt.m4
--- unixodbc-gui-qt-2.3.0/qt.m4
+++ unixodbc-gui-qt-2.3.0/qt.m4
@@ -111,8 +111,8 @@
   # qt_dir_lib="$qt_dir"/lib
   # qt_dir_bin="$qt_dir"/bin
 
-  AC_CHECK_FILE([$qt_dir_include/QtGui/QWizard], [have_qtwizard=yes], [have_qtwizard=no])
-  AC_CHECK_FILE([$qt_dir_include/QtGui/QMdiArea], [have_qtmdiarea=yes], [have_qtmdiarea=no])
+  if test -e "$qt_dir_include/QtGui/QWizard"; then have_qtwizard=yes; else have_qtwizard=no; fi
+  if test -e "$qt_dir_include/QtGui/QMdiArea"; then have_qtmdiarea=yes; else have_qtmdiarea=no; fi
 
   MOC="$qt_dir_bin"/moc
   UIC="$qt_dir_bin"/uic

--- End Message ---
--- Begin Message ---
Version: 2.3.0-4+rm

Dear submitter,

as the package unixodbc-gui-qt 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/942264

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to