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

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

	* configure.in: Get the right multithread option for GCC 3.0 and
	later. (#67583)
This commit is contained in:
Sebastian Wilhelmi 2002-01-22 09:50:24 +00:00 committed by Sebastian Wilhelmi
parent b23c1064bc
commit a9d13e865e
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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

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. (#67583)
2002-01-21 Jeffrey Stedfast <fejj@ximian.com>
* glib/gconvert.c (g_convert_with_fallback): If g_convert fails,

View File

@ -1125,7 +1125,13 @@ if test x"$have_threads" != xno; then
*-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*)