On 18-May-2012 12:33, mathog wrote:
Figured out this part:
configure.ac:68: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body ../../lib/autoconf/lang.m4:194: AC_LANG_CONFTEST is expanded from... ../../lib/autoconf/general.m4:2591: _AC_COMPILE_IFELSE is expanded from... ../../lib/autoconf/general.m4:2607: AC_COMPILE_IFELSE is expanded from... configure.ac:68: the top level
Had to change configure.ac like:
< AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]), [ink_opt_ok=yes], [ink_opt_ok=no]) ---
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [ink_opt_ok=yes], [ink_opt_ok=no])
and
< AC_COMPILE_IFELSE([ ---
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
599c599 < ], [popplercolor=yes]) ---
])], [popplercolor=yes])
Presumably (yet another) incompatibility between autoconf version (this is 2.68).
That leaves:
src/Makefile.am: object `libEMF/libemf.$(OBJEXT)' created by `libEMF/libemf.cpp' and `libEMF/libemf.c' make: *** [Makefile.in] Error 1
which is really crazy because in the entire source tree there are only libemf.cpp and libemf.h, so where it is pulling "libemf.c" from I have no idea. I did try renaming libemf.h to libemf.hpp (dittof ro anything that referenced it) but it made no difference.
Regards,
David Mathog mathog@...1176... Manager, Sequence Analysis Facility, Biology Division, Caltech