Automake: Internal Error

2005-10-27 Thread Richard Warwick
When running autogen.sh for ethereal-0.10.12 on OpenBSD3.7 [~/ethereal-0.10.12](301)$ sh autogen.sh Checking for python. processing . aclocal -I ./aclocal-fallback /usr/local/share/aclocal/pkg.m4:5: warning: underquoted definition of PKG_CHECK_MODULES run info '(automake)Extending aclocal' or

Defining Macros With Literal Values

2005-10-27 Thread Eric Lemings
Greetings, I have a tricky little problem I was hoping someone could help me with. I am trying to write an Autotools macro that extracts the value of a macro from a system header file and defines another preprocessor macro with the same value. Take the following short program for example.

Re: AC_PROG_CC_C_O doesn't work with VC++

2005-10-27 Thread Harald Dunkel
Hi folks, Stepan Kasal wrote: I committed the patch attached to this mail. Could you please apply the attached patch as well? It is necessary on Windows to detect '\' as a directory path separator. Many thanx Harri --- compile~ 2005-10-24 12:03:48.0 +0200 +++ compile 2005-10-26

Re: configure can not determin 'HAVE_LIMITS'

2005-10-27 Thread Steven Woody
Ralf Corsepius [EMAIL PROTECTED] writes: To check for C++-headers you normally have to tell the configure script to switch languages/compilers. Example: # This uses the c-compiler AC_CHECK_HEADERS([limits.h]) # This uses the c++-compiler AC_LANG_PUSH([C++]) AC_CHECK_HEADERS([limits])

Dynamically loadable libraries and check_LTLIBRARIES primary

2005-10-27 Thread matteo . vescovi
Hi, I am working on a portable plugin framework that relies on the autoconf, automake, libtool trio to achieve maximum portability. The framework builds the plugins as runtime dynamically linked modules with the following: lib_LTLIBRARIES = module.la module_la_SOURCES = module.cxx