From ce062771587f6637ce09f79c36e24de691032919 Mon Sep 17 00:00:00 2001 From: ro Date: Mon, 31 Jan 2011 14:00:46 +0000 Subject: * configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169436 138bc75d-0d04-0410-961f-82ee72b054a4 --- boehm-gc/ChangeLog | 5 +++++ boehm-gc/configure | 4 +++- boehm-gc/configure.ac | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) (limited to 'boehm-gc') diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 1712ffbc5cd..03a222e68c2 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2011-01-31 Rainer Orth + + * configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS. + * configure: Regenerate. + 2010-12-10 Iain Sandoe * powerpc_darwin_mach_dep.s: Update for m64. Add eh frames. diff --git a/boehm-gc/configure b/boehm-gc/configure index 78877e50cbc..4f7490cbcc7 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -14910,7 +14910,9 @@ $as_echo "#define GC_SOLARIS_PTHREADS 1" >>confdefs.h # The alternate thread library was only introduced in Solaris 8 and # became the default in Solaris 9, so no need for the special code # above otherwise. - THREADLIBS=-lpthread + # nanosleep, sched_yield, and sem_* only live in librt before + # Solaris 11. + THREADLIBS="-lpthread -lrt" ;; *-*-irix*) diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 43be0b4866d..42cd4190df9 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -193,7 +193,9 @@ case "$THREADS" in # The alternate thread library was only introduced in Solaris 8 and # became the default in Solaris 9, so no need for the special code # above otherwise. - THREADLIBS=-lpthread + # nanosleep, sched_yield, and sem_* only live in librt before + # Solaris 11. + THREADLIBS="-lpthread -lrt" ;; *-*-irix*) AC_DEFINE(GC_IRIX_THREADS,1,[support for Irix pthreads]) -- cgit v1.2.3