Include Xfree86-4.5 in the blacklist. (Reported by Andrew Benton)

This commit is contained in:
Owen Taylor 2005-08-20 05:23:52 +00:00
parent b9da101879
commit 4a7a09b4ab
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2005-08-20 Owen Taylor <otaylor@redhat.com>
* src/cairo-xlib-surface.c (_cairo_xlib_surface_create_internal):
Include Xfree86-4.5 in the blacklist. (Reported by
Andrew Benton)
2005-08-20 Billy Biggs <vektor@dumbterm.net>
Fix for bug #4096:

View file

@ -1650,7 +1650,7 @@ _cairo_xlib_surface_create_internal (Display *dpy,
if (VendorRelease (dpy) <= 60802000)
surface->buggy_repeat = TRUE;
} else if (strcmp (ServerVendor (dpy), "The XFree86 Project, Inc") == 0) {
if (VendorRelease (dpy) <= 40400000)
if (VendorRelease (dpy) <= 40500000)
surface->buggy_repeat = TRUE;
}