AC_LTDL_SHLIBEXT setting LT_MODULE_EXT with wrong extension on mac os x

2009-09-09 Thread Husam Senussi
Hi, Not sure if this question for autconf, but I'm using AC_LTDL_SHLIBEXT to set shard object extension but I end up with LT_MODULE_EXT set to ".so" in mac os x instead of .dylib. This part of my configure,ac AM_INIT_AUTOMAKE(foreign) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL A

Re: Autoconf and DJGPP

2009-09-09 Thread Ralf Wildenhues
* Rugxulo wrote on Wed, Sep 09, 2009 at 09:44:15PM CEST: > > I don't think that's necessary at this point. *NEW!* Andris Pavenis > seems to have fixed the bug (at least with 2.05b) via a small patch > (see below): > > http://www.delorie.com/djgpp/mail-archives/browse.cgi?p=djgpp-workers/2009/09/0

Re: Adding an external project to autoconf

2009-09-09 Thread Keith Marshall
On Wednesday 09 September 2009 18:12:02 Ralf Wildenhues wrote: > And yes, it is perfectly possible to have subpackages that do not > use Automake, or do not use Autoconf either.  Their configure > scripts merely have to conform to what the GNU Coding Standards > say, and their makefiles too. Which

Re: Confusing sample in autoconf manual

2009-09-09 Thread Ralf Wildenhues
Hello santilín, NightStrike, * NightStrike wrote on Wed, Sep 02, 2009 at 05:44:16PM CEST: > On Sun, Aug 9, 2009 at 1:08 PM, santilistas wrote: > > By the way, is this the correct list to send this remarks? Yes; although bugs in Autoconf can go to the bug-autoconf list. Sorry for the long delay.

Re: Adding an external project to autoconf

2009-09-09 Thread Ralf Wildenhues
Hello Dan, * Dan Smithers wrote on Wed, Sep 09, 2009 at 11:33:54AM CEST: > > AC_CONFIG_SUBDIRS (zlib compression boost_ext) Please remove the space before the '('. See 'info Autoconf "Autoconf Language"' for why. And yes, it is perfectly possible to have subpackages that do not use Automake, o

Re: Adding an external project to autoconf

2009-09-09 Thread Bob Friesenhahn
On Wed, 9 Sep 2009, Dan Smithers wrote: The zlib sub-project contains a pre-generated configure and Makefile.in Unfortunately, the zlib project does not use Autoconf or Automake. It only pretends to look like a project which uses Autoconf or Automake using a hand-written configure and Makef

Re: Adding an external project to autoconf

2009-09-09 Thread Dan Smithers
Alfred M. Szmidt wrote: > The sub-projects must contain all generated files. That is, > autoreconf will not traverse anything listed in AC_CONFIG_SUBDIRS > (which it probobly should though). Do those directories contain > Makefile.in, configure, etc? The zlib sub-project contains a pre-generated

Re: Adding an external project to autoconf

2009-09-09 Thread Marshall B. Rogers
Hi, I had a quick look at newlib's autotools setup just now. It uses AC_CONFIG_SUBDIRS, but does not add the directories it configures to the SUBDIRS in Makefile.in. Is it safe to assume that this is the correct behavior? Regards, Marshall On Wed, Sep 9, 2009 at 11:33 AM, Dan Smithers wrote: >

Re: Adding an external project to autoconf

2009-09-09 Thread Alfred M. Szmidt
The sub-projects must contain all generated files. That is, autoreconf will not traverse anything listed in AC_CONFIG_SUBDIRS (which it probobly should though). Do those directories contain Makefile.in, configure, etc? ___ Autoconf mailing list Autoco

Re: Adding an external project to autoconf

2009-09-09 Thread Dan Smithers
Thanks for the quick response, Alfred M. Szmidt wrote: > Please see `(autoconf) Subdirectories' in the manual. That was where I started: I already use AC_CONFIG_SUBDIRS (zlib compression boost_ext) AC_OUTPUT([Makefile]) in the top level configure.ac and SUBDIRS= zlib compression boost_ext in

Re: Adding an external project to autoconf

2009-09-09 Thread Alfred M. Szmidt
Please see `(autoconf) Subdirectories' in the manual. ___ Autoconf mailing list Autoconf@gnu.org http://lists.gnu.org/mailman/listinfo/autoconf

Adding an external project to autoconf

2009-09-09 Thread Dan Smithers
Hi, I am trying to add an external project to my autoconf setup. Specifically it is zlib, and that already has its own autoconf setup. I want to be able to pass the compiler to use and extra directives that are needed to the existing configuration. I have added it as an extra directory to the top