Re: PATCH: patsubst support

2000-10-27 Thread Alexandre Oliva
On Oct 27, 2000, Akim Demaille <[EMAIL PROTECTED]> wrote: > Yep, by default Automake must not let the users do nonportable > things. I tend to agree. But I wouldn't say `must not', I'd say `should not'. -- Alexandre Oliva Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/ Red Hat GCC Deve

Re: How to install "config.h"

2000-10-27 Thread Raja R Harinath
Simon Richter <[EMAIL PROTECTED]> writes: > On 27 Oct 2000, Mark Galassi wrote: > [Installing config.h] > > > But be careful: if any of the C code in the package itself includes > > you might be in for a nasty surprise: if > > a version is already installed and a user is compiling a new version

Re: How to install "config.h"

2000-10-27 Thread Ossama Othman
Hi, On Fri, Oct 27, 2000 at 09:30:47PM +0200, Simon Richter wrote: > On 27 Oct 2000, Mark Galassi wrote: > > [Installing config.h] > > > But be careful: if any of the C code in the package itself includes > > you might be in for a nasty surprise: if > > a version is already installed and a use

Re: ifeq/else/endif problem

2000-10-27 Thread Raja R Harinath
Patrick Guio <[EMAIL PROTECTED]> writes: > I am trying to insert a conditional part in a Makefile.am in the following > way : > > ## 2-dimensions library > libmudfas2d_la_SOURCES = $(MUDSRC) > ifeq ($(CXX),cxx) > libmudfas2d_la_CXXFLAGS = -ptr mudfas2d -DDIM=2 > libmudfas2d_la_LDFLAGS = mudfa

Re: How to install "config.h"

2000-10-27 Thread Simon Richter
On 27 Oct 2000, Mark Galassi wrote: [Installing config.h] > But be careful: if any of the C code in the package itself includes > you might be in for a nasty surprise: if > a version is already installed and a user is compiling a new version > from source, that user will pick up the installed .

Re: How to install "config.h"

2000-10-27 Thread Mark Galassi
>> And use `#include ' in all other >> headers that include it. Ossama> BTW, I do exactly what Alexandre suggests in some of my Ossama> own packages. It works out quite nicely. But be careful: if any of the C code in the package itself includes you might be in for a nasty surp

Re: PATCH: patsubst support

2000-10-27 Thread Akim Demaille
| Akim Demaille writes: | > | > Sorry, I'm confused, and the documentation snippet didn't really | > enlighten me :( | > | | Hi Akim, | | The reasoning was fairly tortured :) | | To document the patsubst internal change I had to invent a contrived | example so that the user could see the

ifeq/else/endif problem

2000-10-27 Thread Patrick Guio
Dear all I am trying to insert a conditional part in a Makefile.am in the following way : ## 2-dimensions library libmudfas2d_la_SOURCES = $(MUDSRC) ifeq ($(CXX),cxx) libmudfas2d_la_CXXFLAGS = -ptr mudfas2d -DDIM=2 libmudfas2d_la_LDFLAGS = mudfas2d/*.o -version-info 0:0:0 else libmudfas2d_