* 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