diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 22:30:14 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-22 22:30:14 +0000 |
commit | 0e0ce3a2c152ca88b17c5a176c224b66a09adcde (patch) | |
tree | b133872f449aaf9a042906bdd233e4245cfd7664 /boehm-gc | |
parent | 8fde03bac12ef8e8d2241f78edfdd5ddf124cd72 (diff) | |
download | gcc-0e0ce3a2c152ca88b17c5a176c224b66a09adcde.tar.gz |
PR target/18444
* configure.ac (threading): Accept 'posix95'.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91042 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 7 | ||||
-rwxr-xr-x | boehm-gc/configure | 2 | ||||
-rw-r--r-- | boehm-gc/configure.ac | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index ab77dd46a4c..afbaed422e4 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr> + + PR target/18444 + * configure.ac (threading): Accept 'posix95'. + * configure: Regenerate. + 2004-11-04 Kelley Cook <kcook@gcc.gnu.org> * Makefile.am: Define ACLOCAL_AMFLAGS. @@ -7,7 +13,6 @@ * Makefile.in, include/Makefile.in: Regenerate. * configure: Regenerate. - 2004-10-19 Ulrich Weigand <uweigand@de.ibm.com> * include/private/gc_priv.h (GC_generic_malloc_words_small_inner): diff --git a/boehm-gc/configure b/boehm-gc/configure index b3ef2e7ea6a..ebf3bdd2f1a 100755 --- a/boehm-gc/configure +++ b/boehm-gc/configure @@ -5306,7 +5306,7 @@ case "$THREADS" in no | none | single) THREADS=none ;; - posix | pthreads) + posix | posix95 | pthreads) THREADS=posix THREADLIBS=-lpthread case "$host" in diff --git a/boehm-gc/configure.ac b/boehm-gc/configure.ac index 59a36122202..53a71a394e6 100644 --- a/boehm-gc/configure.ac +++ b/boehm-gc/configure.ac @@ -120,7 +120,7 @@ case "$THREADS" in no | none | single) THREADS=none ;; - posix | pthreads) + posix | posix95 | pthreads) THREADS=posix THREADLIBS=-lpthread case "$host" in |