>> if SWIG
>> lib_LTLIBRARIES = libgenie.la libge.la libgeperl.la libgeguile.la
>> else
>> lib_LTLIBRARIES = libgenie.la
>> endif
Mark> I was trying that, and I get these two messages, the first seems
Mark> incorrect and the second is very obscure:
Mark> [rosalia@odie genie]$ automake -a
Mark> a
> In your situation I recommend using automake conditionals and not
> @SWIG_LIBRARIES@. This will simplify your life.
>if SWIG
>lib_LTLIBRARIES = libgenie.la libge.la libgeperl.la libgeguile.la
>else
>lib_LTLIBRARIES = libgenie.la
>endif
I was trying that, and I get these
> "Mark" == Mark Galassi <[EMAIL PROTECTED]> writes:
Mark> lib_LTLIBRARIES = libgenie.la @SWIG_LIBRARIES@
Mark> EXTRA_LTLIBRARIES = libge.la libgeperl.la libgeguile.la
This is right.
Mark> /bin/sh ../libtool --mode=install /usr/bin/install -c libge.la
/tmp/junk/lib/libge.la
Automake uses
[note: I've subscribed to [EMAIL PROTECTED] but I'm not sure if it has
gone through yet, so please copy me on replies!]
Or am I just confused? I'm build shared libraries for SWIG wrappers
for Guile, Python and Perl. That works fine, but then I want to make
it all contingent upon SWIG being fou
> ">" == H Nanosecond writes:
>> I encountered pavuk-0.9pl24 a url download utility,
>> it has a space in the version name in the Init:
>> AM_INIT_AUTOMAKE($PACKAGE, "$VERSION $host_alias")
>> and this made make distcheck choke from not quoting in shell commands.
>> So my question is what