From 50dd8727d1186dd370b349062c6cf169abfe67f9 Mon Sep 17 00:00:00 2001 From: cedric Date: Sat, 20 Nov 2010 22:14:57 +0000 Subject: [PATCH] * eina: fix pthread library and flags typos. Patch by Fabien Romano . git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/eina@54753 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- m4/efl_threads.m4 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/m4/efl_threads.m4 b/m4/efl_threads.m4 index 86394bb..33d15a3 100644 --- a/m4/efl_threads.m4 +++ b/m4/efl_threads.m4 @@ -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) -- 2.7.4