Hi, when trying to regenerate the autotools files on current Debian unstable (using dh-autoreconf), I was hit by an incompatibility with recent autoconf/automake. Looks like it's a known problem, and I've found out that various people on the web use the same solution, that I've implemented (attached patch) and it works for me.
Cheers, -- intrigeri
commit 86afedf05660f43c374280f244c87651dc9c3765 Author: intrigeri <[email protected]> Date: Tue Feb 18 13:46:42 2014 +0000 Use AM_PROG_AR if available, it is required by recent autoconf/automake. diff --git a/configure.ac b/configure.ac index f998eb9..7e74a6e 100644 --- a/configure.ac +++ b/configure.ac @@ -6,6 +6,8 @@ AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE([-Wall -Werror]) +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) + AC_PROG_CC dnl We do not want to create a .a for the plugin, so disable by default.
_______________________________________________ OTR-dev mailing list [email protected] http://lists.cypherpunks.ca/mailman/listinfo/otr-dev
