diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2011-01-31 14:00:46 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2011-01-31 14:00:46 +0000 |
commit | 7c1e8838b2025c80c0da49413051074f09b3615e (patch) | |
tree | 2b5156a658272f76e84473941c97d1d6227a2bb2 /boehm-gc/configure | |
parent | c6092243c9d5320aad5a6f0d03c7d80658bd6c2e (diff) | |
download | gcc-7c1e8838b2025c80c0da49413051074f09b3615e.tar.gz |
configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS.
* configure.ac (*-*-solaris2*): Add -lrt to THREADLIBS.
* configure: Regenerate.
From-SVN: r169436
Diffstat (limited to 'boehm-gc/configure')
-rwxr-xr-x | boehm-gc/configure | 4 |
1 files changed, 3 insertions, 1 deletions
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*) |