Re: aclocal does not add LIBTOOL macros?

2007-05-06 Thread Stephane Bortzmeyer
On Sat, May 05, 2007 at 11:48:07PM +0200, Tsuna [EMAIL PROTECTED] wrote a message of 26 lines which said: The problem was that the FreeBSD port of automake (I used only official ports) ... I'd rather advise you to install libtool (and autoconf, if you haven't done so) from ports,

Re: aclocal does not add LIBTOOL macros?

2007-05-05 Thread Stephane Bortzmeyer
On Sat, May 05, 2007 at 05:13:25PM +0200, Tsuna [EMAIL PROTECTED] wrote a message of 42 lines which said: Looks like aclocal does not know where libtool.m4 is. Thanks for the very good tip. The problem was that the FreeBSD port of automake (I used only official ports) installed aclocal

Re: Makefiles and libraries problem

2007-04-12 Thread Stephane Bortzmeyer
On Wed, Apr 11, 2007 at 08:40:30PM -0300, Matí­as Alejandro Torres [EMAIL PROTECTED] wrote a message of 109 lines which said: The command `make` throws an error when trying to build the database directory that says that there is no rule to build the objective `all` Shot in the dark: did

Re: Lost in automatic dependencies

2007-04-11 Thread Stephane Bortzmeyer
On Thu, Apr 05, 2007 at 05:09:44PM +0200, Ralf Wildenhues [EMAIL PROTECTED] wrote a message of 21 lines which said: Just making sure: you said you removed config.cache, but what about $prefix/var/tmp/config.cache? You're right. I deleted config.cache, $prefix/var/tmp/config.cache, restored

Re: Lost in automatic dependencies

2007-04-04 Thread Stephane Bortzmeyer
On Fri, Mar 30, 2007 at 12:13:26AM +0200, Ralf Wildenhues [EMAIL PROTECTED] wrote a message of 16 lines which said: This shows the result as loaded from the cache file (config.cache) or possibly from /usr/local/etc/config.site, Indeed, removing /usr/local/etc/config.site solved the problem

Re: Lost in automatic dependencies

2007-03-29 Thread Stephane Bortzmeyer
On Wed, Mar 28, 2007 at 11:45:47PM +0200, Ralf Wildenhues [EMAIL PROTECTED] wrote: so please enclose AM_INIT_AUTOMAKE in `set -x', `set +x' in configure.ac, add `set -x' as second line to depcomp, run autoconf and configure. Send output. Here it is. dep-problem.txt.gz Description: Binary

Lost in automatic dependencies

2007-03-28 Thread Stephane Bortzmeyer
It seems that my C program does not track dependencies. If I touch a .h, nothing is recompiled. I did *not* use no-dependencies. Reading the FM, it seems I should have automatic dependencies tracking but I do not have. automake (GNU automake) 1.9.6 gcc 4.1.2 or 3.3.3 GNU Make 3.81

Re: Lost in automatic dependencies

2007-03-28 Thread Stephane Bortzmeyer
On Wed, Mar 28, 2007 at 10:48:24PM +0200, Ralf Wildenhues [EMAIL PROTECTED] wrote a message of 16 lines which said: Please show the configure output around checking dependency style. gcc version 3.3.3 (NetBSD nb3 20040520) ... configure:19139: checking dependency style of cc configure:19229:

Re: Lost in automatic dependencies

2007-03-28 Thread Stephane Bortzmeyer
On Wed, Mar 28, 2007 at 11:16:32PM +0200, Ralf Wildenhues [EMAIL PROTECTED] wrote a message of 27 lines which said: How exactly was configure invoked ./configure --config-cache and could you show the configure.ac up to AC_PROG_CXX? I did not invoke AC_PROG_CXX (there is no C++ in the

Re: AC_DEFINE problem

2004-09-03 Thread Stephane Bortzmeyer
On Thu, Sep 02, 2004 at 08:40:29PM +0200, Frederik Fouvry [EMAIL PROTECTED] wrote a message of 23 lines which said: [AC_DEFINE(SVR4) ... autoheader: warning: missing template: SVR4 autoheader: Use AC_DEFINE([SVR4], [], [Description]) AC_DEFINE(SVR4,,[We run on System V Release 4])

Re: aclocal and libtool don't get along

2004-07-20 Thread Stephane Bortzmeyer
On Mon, Jul 19, 2004 at 01:25:12PM -0400, Vance Shipley [EMAIL PROTECTED] wrote a message of 31 lines which said: $ aclocal configure.ac:2: /usr/local/bin/m4: ERROR: Reading inserted file: No such file or directory I suspect that a M4 included file is actually a dangling symlink. Goto

Re: Subdirectories: automake wants GNU mandatory files in every directory

2004-06-04 Thread Stephane Bortzmeyer
On Thu, Jun 03, 2004 at 09:29:38PM +0200, Alexandre Duret-Lutz [EMAIL PROTECTED] wrote a message of 35 lines which said: If there is a config.stats in plugins/example/foobar there is also a configure and a configure.(in|ac). So foobar is the top-level directory of a subpackage, and

Re: simple Q: linking against another static lib

2004-06-03 Thread Stephane Bortzmeyer
On Wed, Jun 02, 2004 at 08:56:31PM -0500, joseph speigle [EMAIL PROTECTED] wrote a message of 51 lines which said: Oh, BTW fedora core 2 automake [EMAIL PROTECTED] Apache]# rpm -qa | grep automake automake16-1.6.3-2 automake17-1.7.9-2 automake14-1.4p6-9 automake-1.8.3-1

Subdirectories: automake wants GNU mandatory files in every directory

2004-06-03 Thread Stephane Bortzmeyer
I use automake for a project with subdirectories (here a test with a dummy program). When I change a Makefile.am in a subdirectory, 'make' cannot rebuild the files because it runs automake with the --gnu option, which is fine for the topmost directory, but not for subdirectories which do not have

automake for plugins (no PROGRAMS, no LIBRARIES)

2004-04-02 Thread Stephane Bortzmeyer
I modify an existing program to add the opportunity to load plugins. They will be small '.so' files (not .a) loaded by dlopen. The program uses automake. Reading automake's documentation, I cannot find an easy way to use it. The node Programs and libraries about primaries talk only of: Use the

Re: automake for plugins (no PROGRAMS, no LIBRARIES)

2004-04-02 Thread Stephane Bortzmeyer
On Fri, Apr 02, 2004 at 12:04:18PM +0200, Andreas Schwab [EMAIL PROTECTED] wrote a message of 18 lines which said: Use libtool with -module. Must I? I mean, I never used libtool, I do not need it until now.