Re: Setting different debug and release locations

2008-11-02 Thread Ralf Wildenhues
Hello Dan, * Dan Smithers wrote on Fri, Oct 31, 2008 at 01:11:15PM CET: > I have several applications that want to use the same home-rolled > library. Currently each application and library is a separate source > tree with its own autotools tree. > > I've been adding > CFLAGS and LDFLAGS to the c

Re: use of AC_TRY_EVAL broken

2008-11-02 Thread Bruno Haible
Hi Eric, > What if we create and document the following macro names: > > AC_COMMAND_IFELSE(command with args, if-true, if-false) > AC_EVAL_IFELSE(variable, if-true, if-false) > > where AC_EVAL_IFELSE([variable]) is shorthand for AC_COMMAND_IFELSE([eval > "$variable"])? Does that solve the immed

Re: Define a complete rule via autoconf (quoting issue, AC_SUBST)

2008-11-02 Thread Ralf Wildenhues
Hello Daniel, re. the part that has not been addressed yet: * Daniel Leidert wrote on Sat, Nov 01, 2008 at 11:21:11PM CET: > > schemas_DATA = `echo "$(schemas_in_files)" | sed > 's/.schemas.in$$//;$(transform);s/$$/.schemas/'` > > Running the install target fails, because the installation rule

Re: Define a complete rule via autoconf (quoting issue, AC_SUBST)

2008-11-02 Thread Paolo Bonzini
> I get errors running ./configure. I guess, this is, because of a problem > with the quotation. Doing a simple: > > AC_SUBST([DESKTOP_DATA_RULE], [ > target: requirements > @list=... > > ]) DESKTOP_DATA_RULE="AS_ESCAPE([ ... ])" AC_SUBST([DESKTOP_DATA_RULE]) should work. Paolo __