Re: Automake conditionals in autoconf

2010-02-24 Thread NightStrike
On Wed, Feb 24, 2010 at 2:23 PM, Ralf Wildenhues wrote: > The above looks ok to me.  Since I cannot, from your description, > exactly reproduce the code that caused the warning for you, I cannot say > whether that was a problem. > > The code as above does not yet take care of adjusting SUBDIRS (an

Re: Automake conditionals in autoconf

2010-02-24 Thread Ralf Wildenhues
Hello, * NightStrike wrote on Wed, Feb 24, 2010 at 06:29:04PM CET: > AC_MSG_CHECKING([whether to build the optional libraries]) > AC_ARG_WITH([libraries], > [AS_HELP_STRING([--with-libraries=ARG], > [Build the extra mingw-w64 libs, where ARG is one of libmangle, > pseh, or all])], > [], >

Re: Automake conditionals

2000-07-02 Thread Braden N. McDaniel
(Sorry for the late follow-up on this. I've been moving and changing jobs.) On 15 Jun 2000, Alexandre Oliva wrote: > On Jun 14, 2000, "Braden N. McDaniel" <[EMAIL PROTECTED]> wrote: > > > automake: src/Makefile.am: `libjs.la' is already going to be installed in > > `noinst' > > This is a limit

Re: Automake conditionals

2000-06-16 Thread Tom Tromey
Alexandre> In particular, in the case of installing the library, you Alexandre> must add the -rpath switch to LDFLAGS_LIBJS. I believe Alexandre> that's the main reason why automake doesn't support Alexandre> conditional installation of ltlibraries. Yes, that's right. Is there something we can d

Re: Automake conditionals

2000-06-16 Thread John R. Sheets
On Wednesday, June 14, 2000, "Braden N. McDaniel" <[EMAIL PROTECTED]> wrote: > > 1 EXTRA_LTLIBRARIES = libjs.la > 2 if JS_INSTALL > 3 lib_LTLIBRARIES = libjs.la > 4 else > 5 noinst_LTLIBRARIES = libjs.la > 6 endif You might also try something like this (not tested): if JS_INSTALL INSTALL_LI

Re: Automake conditionals

2000-06-15 Thread Alexandre Oliva
On Jun 14, 2000, "Braden N. McDaniel" <[EMAIL PROTECTED]> wrote: > automake: src/Makefile.am: `libjs.la' is already going to be installed in > `noinst' This is a limitation of automake. The solution I've been using is like this: EXTRA_LTLIBRARIES = libjs.la lib_LTLIBRARIES = @lib_LIBJS@ noinst

Re: Automake conditionals

2000-06-14 Thread Braden N. McDaniel
On Wed, 14 Jun 2000, Michael Bletzinger wrote: > I don't think you need line 1. Okay... That may be, but as I said, getting rid of it still yields one set of those errors I mentioned. -- Braden N. McDaniel [EMAIL PROTECTED]

Re: Automake conditionals

2000-06-14 Thread Michael Bletzinger
I don't think you need line 1. Michael "Braden N. McDaniel" wrote: > > I have an automake script which, depending on the value of some > substitutions defined in configure, allows a library to be built either as > something that will be installed or as a helper library. I am hoping to >