diff options
author | Carl Worth <cworth@cworth.org> | 2005-05-06 21:33:22 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-05-06 21:33:22 +0000 |
commit | 10c88d424485c7f001e9e03c121aa7c3b55336cc (patch) | |
tree | cea9516a466c2f28bf7f68280cd90003af73448c /src/cairo-xlib.h | |
parent | 9939e01b693a885496cfa82430b91c11a121269e (diff) |
Change definitions of everything in cairo-features.h to prefer #if over #ifdef.
Track #ifdef -> #if changes.
Add support to automatically change all #ifdef CAIRO_HAS to #if CAIRO_HAS.
Diffstat (limited to 'src/cairo-xlib.h')
-rw-r--r-- | src/cairo-xlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-xlib.h b/src/cairo-xlib.h index 9c574ea3..e4483b64 100644 --- a/src/cairo-xlib.h +++ b/src/cairo-xlib.h @@ -39,7 +39,7 @@ #include <cairo.h> -#ifdef CAIRO_HAS_XLIB_SURFACE +#if CAIRO_HAS_XLIB_SURFACE #include <X11/Xlib.h> #include <X11/extensions/Xrender.h> |