diff options
author | Sven Herzberg <sven@imendio.com> | 2008-07-22 21:21:53 +0000 |
---|---|---|
committer | Sven Herzberg <herzi@src.gnome.org> | 2008-07-22 21:21:53 +0000 |
commit | 7551360c1e76b9f0fd3c981639e22d2ffc9aba14 (patch) | |
tree | d98da8f6faf1e9b671ec6981e9fd951bbbd61a9d | |
parent | c9d31fc02205eaa9e75dd6216e15206a1ced4b49 (diff) | |
download | gtk+-7551360c1e76b9f0fd3c981639e22d2ffc9aba14.tar.gz |
Fix svn:ignore and the include condition
2008-07-22 Sven Herzberg <sven@imendio.com>
Fix svn:ignore and the include condition
* gdk/tests/check-gdk-cairo.c: ifndef => ifdef
svn path=/trunk/; revision=20896
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gdk/tests/check-gdk-cairo.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2008-07-22 Sven Herzberg <sven@imendio.com> + + Fix svn:ignore and the include condition + + * gdk/tests/check-gdk-cairo.c: ifndef => ifdef + 2008-07-22 Tor Lillqvist <tml@novell.com> * configure.in: Workaround for what apparently is a bug in MSYS: diff --git a/gdk/tests/check-gdk-cairo.c b/gdk/tests/check-gdk-cairo.c index d1cb41b489..19f49951c4 100644 --- a/gdk/tests/check-gdk-cairo.c +++ b/gdk/tests/check-gdk-cairo.c @@ -24,7 +24,7 @@ */ #include <gdk/gdk.h> -#ifndef CAIRO_HAS_QUARTZ_SURFACE +#ifdef CAIRO_HAS_QUARTZ_SURFACE #include <cairo-quartz.h> #endif |