From: caro Date: Thu, 28 Jan 2010 17:25:52 +0000 (+0000) Subject: async events do not depend on pthread anymore X-Git-Tag: accepted/2.0/20130306.225542~242^2~2083 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=296920bfdce498c972c16d94f435087a6af151dc;p=profile%2Fivi%2Fevas.git async events do not depend on pthread anymore git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@45670 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/configure.ac b/configure.ac index cd43ece..1fd1412 100644 --- a/configure.ac +++ b/configure.ac @@ -749,11 +749,10 @@ AC_ARG_ENABLE(async-events, AC_MSG_RESULT($build_async_events) AC_MSG_CHECKING(whether we can build Async Events support) -if test \( "x$build_async_events" = "xyes" -o "x$build_async_events" = "xauto" \) -a "x$has_pthreads" = "xyes"; then +if test "x$build_async_events" = "xyes" || test "x$build_async_events" = "xauto" ; then AC_MSG_RESULT(yes) AC_DEFINE(BUILD_ASYNC_EVENTS, 1, [Build async events support]) build_async_events="yes" - need_pthreads="yes" else AC_MSG_RESULT(no) build_async_events="no"