Eet: remove --as-needed on OpenBSD

on OpenBSD, -Wl,--as-needed conflicts with -pthread.

Reported by Fabien Romano.


SVN revision: 65222
This commit is contained in:
Vincent Torri 2011-11-15 06:52:52 +00:00
parent 0e44d14fa1
commit 8319ddadc5
1 changed files with 7 additions and 1 deletions

View File

@ -410,7 +410,13 @@ case "$host_os" in
esac
AC_SUBST(lt_enable_auto_import)
EFL_LINKER_FLAG([-Wl,--as-needed])
case "${host_os}" in
openbsd*)
;;
*)
EFL_LINKER_FLAG([-Wl,--as-needed])
;;
esac
### Checks for library functions
AC_ISC_POSIX