Closed basil-conto closed 3 years ago
Please kindly try with latest git
Please kindly try with latest git
Thanks! All the warnings are gone now.
BTW, I suggest the following minor tweak:
diff --git a/configure.ac b/configure.ac
index 5d7b1ed..454a107 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,7 +19,7 @@ AM_MAINTAINER_MODE
AC_PROG_CC
AC_PROG_CPP
AC_PROG_CXX
-# AC_PROG_LIBTOOL
+dnl AC_PROG_LIBTOOL
LT_INIT
PKG_PROG_PKG_CONFIG
This way, autoupdate
won't change # AC_PROG_LIBTOOL
to # LT_INIT
(it seems to be too dumb to recognise comment syntax, but the dnl
macro seems to work around that).
I am able to configure and build
fts-xapian
cleanly with the Autotools versions currently present in Debian Testing.However, today I installed locally the latest release tarballs of Autoconf 2.71, Automake 1.16.4, and Libtool 2.4.6, and with these I see some warnings when running
autoreconf -vi
.Here is the output of
autoreconf -vi
, diffed from Autoconf version 2.69 to 2.71:Running
autoupdate
afterautoreconf
replacesAC_PROG_LIBTOOL
withLT_INIT
, but the other warnings remain.I am only just learning how to use Autotools, so (a) it's possible that some of the warnings are due to a misinstallation on my part; and (b) and I can't yet offer concrete help. Nevertheless, let me know if you'd like me to test anything locally. HTH, and thanks.