diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-25 01:21:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-09-25 01:21:06 +0200 |
commit | 8534cc970698d99c875cf6fc7be5cffbc4a5768a (patch) | |
tree | 124225dec0250dec35cf92636648df8c1cb30047 /m4/acx-pthread.m4 | |
parent | 6aa83e7fae4be22e8b81aee60262258c6c2d6f0a (diff) |
Improve pthread test
Diffstat (limited to 'm4/acx-pthread.m4')
-rw-r--r-- | m4/acx-pthread.m4 | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/m4/acx-pthread.m4 b/m4/acx-pthread.m4 index feeb01d..4be477f 100644 --- a/m4/acx-pthread.m4 +++ b/m4/acx-pthread.m4 @@ -128,8 +128,15 @@ case "${host_cpu}-${host_os}" in # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: - acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags" + # CS: Move -mt to the front of the list; Sun CC will use -mt, + # gcc will use -pthreads. + # + acx_pthread_flags="-mt -pthreads pthread -pthread $acx_pthread_flags" ;; + + *-darwin*) + acx_pthread_flags="-pthread $acx_pthread_flags" + ;; esac if test x"$acx_pthread_ok" = xno; then |