libtool broken pipe problem

2009-12-14 Thread Joost Kraaijeveld
Hi, When compiling a (large) project with multiple Makefiles (with make -k -j6 all ) , I get errors from libtool: ../../../../../libtool: line 747: echo: write error: Broken pipe ../../../../../../library/DagdaORB/.libs/libdagdaorb.so: undefined reference to

Re: libtool broken pipe problem

2009-12-14 Thread Ralf Wildenhues
Hi Joost, * Joost Kraaijeveld wrote on Mon, Dec 14, 2009 at 09:21:01AM CET: When compiling a (large) project with multiple Makefiles (with make -k -j6 all ) , I get errors from libtool: ../../../../../libtool: line 747: echo: write error: Broken pipe

shell variables in configure.ac

2009-12-14 Thread Martin Kalbfuß
Hi, I have the following lines in configure.ac SKMAJOR=0 SKMINOR=1 SKPATCH=2 SDLMAJOR=1 SDLMINOR=2 SDLPATCH=13 AC_PREREQ([2.64]) AC_INIT([SK], [0.1.0-1.2.13], [ma.kalbf...@web.de]) AC_CONFIG_SRCDIR([src/VideoBase.def]) AM_INIT_AUTOMAKE([]) # config.h AC_DEFINE_UNQUOTED([SKMajor], [$SKMAJOR],

Re: shell variables in configure.ac

2009-12-14 Thread Bob Friesenhahn
On Mon, 14 Dec 2009, Martin Kalbfuß wrote: When I have a look at the config.h I see only empty defines like #define SKMajor What's wrong here? Shell lines prior to AC_INIT are ignored. This is definitely an annoyance. Bob -- Bob Friesenhahn bfrie...@simple.dallas.tx.us,

Re: shell variables in configure.ac

2009-12-14 Thread Ralf Wildenhues
* Bob Friesenhahn wrote on Tue, Dec 15, 2009 at 03:24:29AM CET: On Mon, 14 Dec 2009, Martin Kalbfuß wrote: When I have a look at the config.h I see only empty defines like #define SKMajor What's wrong here? Shell lines prior to AC_INIT are ignored. This is definitely an annoyance.

Re: [PATCH] maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions

2009-12-14 Thread Jim Meyering
Ralf Wildenhues wrote: * Jim Meyering wrote on Sun, Dec 13, 2009 at 11:44:15AM CET: Paolo Bonzini wrote: This rule could actually be moved to Automake's distcheck target. Good idea. FYI, here's the definition I have now: (added GPERF and LIBTOOL, and made it overridable) Hi Ralf, Good