@@ -129,7 +129,7 @@ case "$THREADS" in
no | none | single)
THREADS=none
;;
- posix | posix95 | pthreads)
+ posix | pthreads)
THREADS=posix
THREADLIBS=-lpthread
case "$host" in
@@ -1354,7 +1354,7 @@ case ${enable_threads} in
# default
target_thread_file='single'
;;
- aix | dce | lynx | mipssde | posix | posix95 | rtems | \
+ aix | dce | lynx | mipssde | posix | rtems | \
single | tpf | vxworks | win32)
target_thread_file=${enable_threads}
;;
@@ -1145,8 +1145,6 @@ MIPS SDE thread support.
This is an alias for @samp{single}.
@item posix
Generic POSIX/Unix98 thread support.
-@item posix95
-Generic POSIX/Unix95 thread support.
@item rtems
RTEMS thread support.
@item single
deleted file mode 100644
@@ -135,7 +135,6 @@ see the files COPYING3 and COPYING.RUNTI
Currently supported threads packages are
TPF threads with -D__tpf__
POSIX/Unix98 threads with -D_PTHREADS
- POSIX/Unix95 threads with -D_PTHREADS95
DCE threads with -D_DCE_THREADS
*/
@@ -145,8 +144,6 @@ see the files COPYING3 and COPYING.RUNTI
#include "gthr-tpf.h"
#elif _PTHREADS
#include "gthr-posix.h"
-#elif _PTHREADS95
-#include "gthr-posix95.h"
#elif _DCE_THREADS
#include "gthr-dce.h"
deleted file mode 100644
deleted file mode 100644
@@ -1043,7 +1043,7 @@ case "$THREADS" in
no | none | single)
THREADS=none
;;
- aix | posix | posix95 | pthreads)
+ aix | posix | pthreads)
THREADS=posix
case "$host" in
*-*-linux*)