diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-08-04 19:02:36 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-08-04 19:02:36 +0000 |
commit | 72f11163875fee95067f00e8a719ec8d7a879111 (patch) | |
tree | f77df0b6721af0024d7708664f6453b6c29dd689 | |
parent | b9987ad725de709fb4dc07a9046cd562635f1b85 (diff) | |
download | gdk-pixbuf-72f11163875fee95067f00e8a719ec8d7a879111.tar.gz |
Fix problem where use_xshm was getting set wrong if MIT_SHM wasn't found.
Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init):
Fix problem where use_xshm was getting set wrong if
MIT_SHM wasn't found. (George Lebel)
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 6 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 6 | ||||
-rw-r--r-- | gdk/x11/gdkimage-x11.c | 2 |
6 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): + Fix problem where use_xshm was getting set wrong if + MIT_SHM wasn't found. (George Lebel) + 2003-08-04 Tor Lillqvist <tml@iki.fi * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 13bbeb177..d0357e1f3 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): + Fix problem where use_xshm was getting set wrong if + MIT_SHM wasn't found. (George Lebel) + 2003-08-04 Tor Lillqvist <tml@iki.fi * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino: diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 13bbeb177..d0357e1f3 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): + Fix problem where use_xshm was getting set wrong if + MIT_SHM wasn't found. (George Lebel) + 2003-08-04 Tor Lillqvist <tml@iki.fi * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 13bbeb177..d0357e1f3 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): + Fix problem where use_xshm was getting set wrong if + MIT_SHM wasn't found. (George Lebel) + 2003-08-04 Tor Lillqvist <tml@iki.fi * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 13bbeb177..d0357e1f3 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Mon Aug 4 14:53:46 2003 Owen Taylor <otaylor@redhat.com> + + * gdk/x11/gdkimage-x11.c (_gdk_windowing_image_init): + Fix problem where use_xshm was getting set wrong if + MIT_SHM wasn't found. (George Lebel) + 2003-08-04 Tor Lillqvist <tml@iki.fi * gdk/win32/gdkevents-win32.c (apply_filters): Fix braino: diff --git a/gdk/x11/gdkimage-x11.c b/gdk/x11/gdkimage-x11.c index be9f4df6d..dda055785 100644 --- a/gdk/x11/gdkimage-x11.c +++ b/gdk/x11/gdkimage-x11.c @@ -217,8 +217,8 @@ _gdk_windowing_image_init (GdkDisplay *display) event_base, ShmNumberEvents); } else - display_x11->use_xshm = TRUE; #endif /* USE_SHM */ + display_x11->use_xshm = FALSE; } } |