automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: building a shared library that depends on a static library


From: Ralf Wildenhues
Subject: Re: building a shared library that depends on a static library
Date: Fri, 3 Mar 2006 18:17:18 +0100
User-agent: Mutt/1.5.11

* Ralf Wildenhues wrote on Fri, Mar 03, 2006 at 06:10:21PM CET:
> cheap workaround of the day: disable shared libs on problematic
> platforms: put this in configure.ac before AC_PROG_LIBTOOL:
> 
> AC_ENABLE_SHARED
> case $host in
>   hppa*|x86_64*|s390* | *-solaris*|*-sunos*)
>   AC_DISABLE_SHARED
>   ;;
> esac


D'oh.  They can't be repeated with 1.5.x.  :(

case $host in
  hppa*|x86_64*|s390* | *-solaris*|*-sunos*)
    AC_DISABLE_SHARED
    ;;
  *)
    AC_ENABLE_SHARED
    ;;
esac

Cheers,
Ralf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]