configure: Rebuilt.
* configure: Rebuilt. * configure.in (THREADSPEC): Don't set THREADLIBS on Cygwin. From David Billinghurst. From-SVN: r44576
This commit is contained in:
parent
4b5eb038f3
commit
1518ec6053
@ -1,3 +1,9 @@
|
||||
2001-08-02 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* configure: Rebuilt.
|
||||
* configure.in (THREADSPEC): Don't set THREADLIBS on Cygwin. From
|
||||
David Billinghurst.
|
||||
|
||||
2001-08-01 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* include/posix.h (_POSIX_PII_SOCKET): Define.
|
||||
|
616
libjava/configure
vendored
616
libjava/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -329,8 +329,15 @@ THREADH=
|
||||
THREADSPEC=
|
||||
case "$THREADS" in
|
||||
posix)
|
||||
THREADLIBS=-lpthread
|
||||
THREADSPEC=-lpthread
|
||||
case "$host" in
|
||||
*-*-cygwin*)
|
||||
# Don't set THREADLIBS here. Cygwin doesn't have -lpthread.
|
||||
;;
|
||||
*)
|
||||
THREADLIBS=-lpthread
|
||||
THREADSPEC=-lpthread
|
||||
;;
|
||||
esac
|
||||
THREADOBJS=posix-threads.lo
|
||||
THREADH=posix-threads.h
|
||||
# MIT pthreads doesn't seem to have the mutexattr functions.
|
||||
|
Loading…
Reference in New Issue
Block a user