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
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
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
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
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 .
>> 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
| 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
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_