diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-08 15:39:35 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-08 15:39:35 +0000 |
commit | fe5ef4a01870545d0344e670cd528ad096ebab1d (patch) | |
tree | e818a4b6b520de30d7c807a4a85e9a02746662bb /boehm-gc | |
parent | 51e6e22ca097d84c2aea0e524edc6d79ae6bc030 (diff) | |
download | gcc-fe5ef4a01870545d0344e670cd528ad096ebab1d.tar.gz |
boehm-gc:
* configure.ac (THREADS): Remove posix95.
* configure: Regenerate.
gcc:
* gthr-posix95.h: Remove.
* gthr.h [_PTHREADS95]: Remove.
* configure.ac (enable_threads): Remove posix95.
* configure: Regenerate.
* doc/install.texi (Configuration, --enable-threads): Remove
posix95.
libgomp:
* config/posix95/lock.c, posix95/omp-lock.h: Remove.
libjava:
* configure.ac (THREADS): Remove posix95.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177568 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rwxr-xr-x | boehm-gc/configure | 2 | ||||
-rw-r--r-- | boehm-gc/configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 34e3882e506..15f079dd3a2 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +2011-08-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * configure.ac (THREADS): Remove posix95. + * configure: Regenerate. + 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR target/39150 diff --git a/boehm-gc/configure b/boehm-gc/configure index 66bb3e7f06a..632a229cdf2 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -14712,7 +14712,7 @@ case "$THREADS" in no | none | single) THREADS=none ;; - posix | posix95 | pthreads) + posix | pthreads) THREADS=posix THREADLIBS=-lpthread case "$host" in diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 799959a0e0f..a741ca6d27a 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -129,7 +129,7 @@ case "$THREADS" in no | none | single) THREADS=none ;; - posix | posix95 | pthreads) + posix | pthreads) THREADS=posix THREADLIBS=-lpthread case "$host" in |