diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 15:48:00 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 15:48:00 -0400 |
commit | d53595dd6d4a1d6431aa8d439c63e30cb27525a0 (patch) | |
tree | 5e4692653110b696e2c638511da0bf6683d03533 /configure.in | |
parent | c19939e97903f0db0f83fa66e7f3789829e2f119 (diff) |
Skip pthread detection for minix (configure.in)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 3e956dc6..cec040b4 100644 --- a/configure.in +++ b/configure.in @@ -374,6 +374,10 @@ case $target in AC_MSG_WARN([*** _Untested pthreads_ try setting LIBPTHREAD_LIBS manually if it doesn't work ***]) ;; + *-*-minix*) + AC_MSG_NOTICE([Minix detected, skipping pthread detection]) + ;; + *) AC_MSG_CHECKING(whether threads work with -pthread) LDSAVEFLAGS=$LDFLAGS |