corrected thread detection for Darwin / Mac OS X

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15184 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-04-17 06:19:42 +00:00
parent e7300ec6d9
commit 4101db8100
2 changed files with 248 additions and 248 deletions

490
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -3180,7 +3180,11 @@ if test "$TOOLKIT" != "MSW"; then
dnl and finally the userland threads
THREAD_OPTS="-kthread lthread $THREAD_OPTS c_r"
;;
*-*-aix* )
*-*-darwin*)
dnl Darwin / Mac OS X just uses -lpthread tested below
THREAD_OPTS=""
;;
*-*-aix*)
dnl AIX calls the library libpthreads - thanks IBM!
THREAD_OPTS="pthreads"
;;