+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
+2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
+
+ * configure.in: Make CPPFLAGS, not CFLAGS, include
+ G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
+ programs would link to the threads library on some platforms. Also
+ fixed a bug manifesting through this change.
+
2002-11-26 Matthias Clasen <maclas@gmx.de>
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
AC_MSG_CHECKING(thread related cflags)
AC_MSG_RESULT($G_THREAD_CFLAGS)
- CFLAGS="$CFLAGS $G_THREAD_CFLAGS"
+ CPPFLAGS="$CPPFLAGS $G_THREAD_CFLAGS"
fi
dnl determination of G_THREAD_LIBS
mutex_has_default=no
case $have_threads in
posix|dce)
+ glib_save_CPPFLAGS="$CPPFLAGS"
+ CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
if test x"$G_THREAD_LIBS" = x; then
case $host in
*-aix*)
AC_MSG_WARN($AIX_COMPILE_INFO)
;;
*)
- glib_save_CPPFLAGS="$CPPFLAGS"
- CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
G_THREAD_LIBS=error
glib_save_LIBS="$LIBS"
for thread_lib in "" pthread pthread32 pthreads thread dce; do