Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 100917
Collapse All | Expand All

(-)cairo-0.6.0/src/cairo-xlib-surface.c.orig (-2 / +2 lines)
Lines 1468-1477 Link Here
1468
    }
1468
    }
1469
1469
1470
    surface->buggy_repeat = FALSE;
1470
    surface->buggy_repeat = FALSE;
1471
    if (strcmp (ServerVendor (dpy), "The X.Org Foundation") == 0) {
1471
    if (strstr (ServerVendor (dpy), "The X.Org Foundation") != NULL) {
1472
	if (VendorRelease (dpy) <= 60802000)
1472
	if (VendorRelease (dpy) <= 60802000)
1473
	    surface->buggy_repeat = TRUE;
1473
	    surface->buggy_repeat = TRUE;
1474
    } else if (strcmp (ServerVendor (dpy), "The XFree86 Project, Inc") == 0) {
1474
    } else if (strstr (ServerVendor (dpy), "The XFree86 Project, Inc") != NULL) {
1475
	if (VendorRelease (dpy) <= 40400000)
1475
	if (VendorRelease (dpy) <= 40400000)
1476
	    surface->buggy_repeat = TRUE;
1476
	    surface->buggy_repeat = TRUE;
1477
    }
1477
    }

Return to bug 100917