From 18720fb2db09e5f172a091f19315d8b24470b6d6 Mon Sep 17 00:00:00 2001 From: gerald Date: Wed, 12 Apr 2006 19:57:02 +0000 Subject: [PATCH 1/1] PR libgcj/23829 * configure.ac: Link against -lpthread rather than -lc_r on FreeBSD 5 and above. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112897 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/ChangeLog | 7 +++++++ libjava/configure | 7 +++---- libjava/configure.ac | 7 +++---- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 55ce659a606..227d72c6973 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,10 @@ +2006-04-12 NAKATA Maho + + PR libgcj/23829 + * configure.ac: Link against -lpthread rather than -lc_r on + FreeBSD 5 and above. + * configure: Regenerate. + 2006-04-11 Bryce McKinlay * gnu/gcj/runtime/SystemClassLoader.java (addClass): Get the value diff --git a/libjava/configure b/libjava/configure index b72520e4e14..a8afc704214 100755 --- a/libjava/configure +++ b/libjava/configure @@ -9210,11 +9210,10 @@ case "$THREADS" in THREADSPEC='%{!pthread: %{!shared: %eUnder this configuration, the user must provide -pthread when linking.}}' ;; *-*-freebsd*) - # FreeBSD 5 implements a model much closer to other modern UNIX - # which support threads. However, it still does not support - # -lpthread. + # FreeBSD >=5.3 implements a model much closer to other modern UNIX + # systems which support threads and -lpthread. THREADLDFLAGS=-pthread - THREADSPEC=-lc_r + THREADSPEC=-lpthread ;; alpha*-dec-osf*) THREADCXXFLAGS=-pthread diff --git a/libjava/configure.ac b/libjava/configure.ac index 2731bf3fc37..86359f12a12 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -800,11 +800,10 @@ case "$THREADS" in THREADSPEC='%{!pthread: %{!shared: %eUnder this configuration, the user must provide -pthread when linking.}}' ;; *-*-freebsd*) - # FreeBSD 5 implements a model much closer to other modern UNIX - # which support threads. However, it still does not support - # -lpthread. + # FreeBSD >=5.3 implements a model much closer to other modern UNIX + # systems which support threads and -lpthread. THREADLDFLAGS=-pthread - THREADSPEC=-lc_r + THREADSPEC=-lpthread ;; alpha*-dec-osf*) THREADCXXFLAGS=-pthread -- 2.11.0