* eet: sync with eina efl_threads.m4.

Patch from the OpenBSD team :
              Fabien Romano <fabien@openbsd.org>
              Jonathan Armani <armani@opensbd.org>


SVN revision: 54758
This commit is contained in:
Cedric BAIL 2010-11-21 10:54:14 +00:00
parent c928276a8f
commit 85a8b8834f
1 changed files with 6 additions and 6 deletions

View File

@ -85,12 +85,12 @@ case "$host_os" in
mingw*)
;;
solaris*)
_efl_thread_cflags="-mt"
_efl_thread_libs="-mt"
_efl_threads_cflags="-mt"
_efl_threads_libs="-mt"
;;
*)
_efl_thread_cflags="-pthread"
_efl_thread_libs="-pthread"
_efl_threads_cflags="-pthread"
_efl_threads_libs="-pthread"
;;
esac
@ -127,8 +127,8 @@ fi
EFL_PTHREAD_CFLAGS=""
EFL_PTHREAD_LIBS=""
if test "x${_efl_have_posix_threads}" = "xyes" ; then
EFL_PTHREAD_CFLAGS=${_efl_thread_cflags}
EFL_PTHREAD_LIBS=${_efl_thread_libs}
EFL_PTHREAD_CFLAGS=${_efl_threads_cflags}
EFL_PTHREAD_LIBS=${_efl_threads_libs}
fi
AC_SUBST(EFL_PTHREAD_CFLAGS)