Get the right multithread option for GCC 3.0 and later on AIX. (#67583)

2002-01-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: Get the right multithread option for GCC 3.0 and
	later on AIX. (#67583)
This commit is contained in:
Sebastian Wilhelmi
2002-01-22 09:52:17 +00:00
committed by Sebastian Wilhelmi
parent 26592710a2
commit 19a27ad809
9 changed files with 47 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -1,3 +1,8 @@
2002-01-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Get the right multithread option for GCC 3.0 and
later on AIX. (#67583)
2001-07-27 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h: Use G_GNUC_EXTENSION instead of __extension__. Patch

View File

@@ -791,7 +791,13 @@ G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_REENTRANT" # good default guess
*-aix*)
G_THREAD_CFLAGS="$G_THREAD_CFLAGS -D_THREAD_SAFE"
if test x"$GCC" = xyes; then
G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads"
# GCC 3.0 and above needs -pthread
# GCC 2.x and below needs -mthreads
AC_TRY_COMPILE(,[#if __GNUC__ <= 2
bail out here
#endif],
G_THREAD_CFLAGS="$G_THREAD_CFLAGS -pthread",
G_THREAD_CFLAGS="$G_THREAD_CFLAGS -mthreads")
fi
;;
*-freebsd2.2*)