diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-05-19 10:53:11 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-05-19 10:53:11 +0000 |
commit | 7897fe095365bef530398d4a2a9dcb1cd01940c7 (patch) | |
tree | cb0d84b3223d9e9221e2342c918547dc4763d5f8 | |
parent | d68819ff6dba074f1c5fac5fadd52fcfe154de24 (diff) |
* Fix pthread autoconf checks for Solaris (original patch from Sjoerd Simmons)
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1220 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r-- | common/acx_pthread.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/acx_pthread.m4 b/common/acx_pthread.m4 index a96d31d..75f6a80 100644 --- a/common/acx_pthread.m4 +++ b/common/acx_pthread.m4 @@ -231,7 +231,7 @@ if test "x$acx_pthread_ok" = xyes; then # First, check whether caller wants us to skip -shared checks # this is useful AC_MSG_CHECKING([whether to check for GCC pthread/shared inconsistencies]) - if test x"$3" = x1; then + if test x"$GCC" != xyes; then AC_MSG_RESULT([no]) else AC_MSG_RESULT([yes]) |