configure: Rebuilt.

* configure: Rebuilt.
	* configure.in (THREADSPEC): Don't set THREADLIBS on Cygwin.  From
	David Billinghurst.

From-SVN: r44576
This commit is contained in:
Tom Tromey 2001-08-02 17:08:37 +00:00 committed by Tom Tromey
parent 4b5eb038f3
commit 1518ec6053
3 changed files with 331 additions and 302 deletions

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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.