Commit 14caa62f by Gilles Zunino Committed by Tom Tromey

configure.in: Switch from irix threads to posix threads Defined IRIX_THREADS.

1999-05-05  Gilles Zunino  <Gilles.Zunino@hei.fr>
	* configure.in: Switch from irix threads to posix threads
	Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
	for mips architecture.
	* configure: Regenerate.

From-SVN: r26779
parent fd164b17
1999-05-05 Gilles Zunino <Gilles.Zunino@hei.fr>
* configure.in: Switch from irix threads to posix threads
Defined IRIX_THREADS. Put mips_sgi_mach_dep.lo into machdep
for mips architecture.
* configure: Regenerate.
1999-04-30 Tom Tromey <tromey@cygnus.com>
* linux_threads.c: Don't reference __pthread_initial_thread_bos.
......
......@@ -2275,7 +2275,9 @@ if test "$THREADS" = yes; then
THREADS=win32
;;
*-*-irix*)
THREADS=irix
# FIXME: for now, choose POSIX, because we implement that.
# Later, choose irix threads.
THREADS=posix
;;
*-*-solaris*)
# FIXME: for now, choose POSIX, because we implement that.
......@@ -2317,6 +2319,12 @@ EOF
EOF
;;
*-*-irix*)
cat >> confdefs.h <<\EOF
#define IRIX_THREADS 1
EOF
;;
esac
;;
qt)
......@@ -2383,6 +2391,13 @@ case "$host" in
alpha-*-*)
machdep="alpha_mach_dep.lo"
;;
mips-*-*)
machdep="mips_sgi_mach_dep.lo"
cat >> confdefs.h <<\EOF
#define NO_EXECUTE_PERMISSION 1
EOF
;;
mipstx39-*-elf*)
machdep="mips_ultrix_mach_dep.lo"
cat >> confdefs.h <<\EOF
......
......@@ -44,7 +44,9 @@ if test "$THREADS" = yes; then
THREADS=win32
;;
*-*-irix*)
THREADS=irix
# FIXME: for now, choose POSIX, because we implement that.
# Later, choose irix threads.
THREADS=posix
;;
*-*-solaris*)
# FIXME: for now, choose POSIX, because we implement that.
......@@ -74,6 +76,9 @@ case "$THREADS" in
AC_DEFINE(SOLARIS_THREADS)
AC_DEFINE(_SOLARIS_PTHREADS)
;;
*-*-irix*)
AC_DEFINE(IRIX_THREADS)
;;
esac
;;
qt)
......@@ -132,6 +137,10 @@ case "$host" in
alpha-*-*)
machdep="alpha_mach_dep.lo"
;;
mips-*-*)
machdep="mips_sgi_mach_dep.lo"
AC_DEFINE(NO_EXECUTE_PERMISSION)
;;
mipstx39-*-elf*)
machdep="mips_ultrix_mach_dep.lo"
AC_DEFINE(STACKBASE, __stackbase)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment