diff --git a/ChangeLog b/ChangeLog index 7b4ea3b769..38b07cc392 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-07-16 Matthias Clasen + + * configure.in: Make the test for the sync extension + more robust. (#347315, Tommi Komulainen) + + * gtk/gtktextiter.c: Declare GtkTextRealIter as a type that + may alias. (#347585, Ed Catmur) + 2006-07-13 Michael Emmel * gdk/directfb/gdkdrawable-directfb.c diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 7b4ea3b769..38b07cc392 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,11 @@ +2006-07-16 Matthias Clasen + + * configure.in: Make the test for the sync extension + more robust. (#347315, Tommi Komulainen) + + * gtk/gtktextiter.c: Declare GtkTextRealIter as a type that + may alias. (#347585, Ed Catmur) + 2006-07-13 Michael Emmel * gdk/directfb/gdkdrawable-directfb.c diff --git a/configure.in b/configure.in index 5c8eeea4e8..cc25445f15 100644 --- a/configure.in +++ b/configure.in @@ -1192,12 +1192,16 @@ if test "x$gdktarget" = "xx11"; then AC_DEFINE(HAVE_SHAPE_EXT)) # X SYNC check + gtk_save_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $x_cflags" AC_CHECK_FUNC(XSyncQueryExtension, [AC_CHECK_HEADER(X11/extensions/sync.h, AC_DEFINE(HAVE_XSYNC, 1, Have the SYNC extension library), :, [#include ])]) + CFLAGS="$gtk_save_CFLAGS" + # Xshm checks if test "x$enable_shm" = "xyes"; then