diff --git a/cogl/cogl-fixed.c b/cogl/cogl-fixed.c index 99c7d5b64..7be9c3d99 100644 --- a/cogl/cogl-fixed.c +++ b/cogl/cogl-fixed.c @@ -626,7 +626,7 @@ cogl_fixed_sqrt (CoglFixed x) /* * Find the highest bit set */ -#if __arm__ +#if defined (__arm__) /* This actually requires at least arm v5, but gcc does not seem * to set the architecture defines correctly, and it is I think * very unlikely that anyone will want to use clutter on anything diff --git a/cogl/cogl-framebuffer.h b/cogl/cogl-framebuffer.h index 7e31f2239..a3795d2f4 100644 --- a/cogl/cogl-framebuffer.h +++ b/cogl/cogl-framebuffer.h @@ -34,7 +34,7 @@ #include #endif /* COGL_HAS_WIN32_SUPPORT */ -#if COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT +#if defined (COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT) #include #endif /* COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT */ @@ -379,7 +379,7 @@ HWND cogl_win32_onscreen_get_window (CoglOnscreen *onscreen); #endif /* COGL_HAS_WIN32_SUPPORT */ -#if COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT +#if defined (COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT) struct wl_surface * cogl_wayland_onscreen_get_surface (CoglOnscreen *onscreen); #endif /* COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT */ diff --git a/cogl/cogl-renderer-private.h b/cogl/cogl-renderer-private.h index f85a84375..45222efe5 100644 --- a/cogl/cogl-renderer-private.h +++ b/cogl/cogl-renderer-private.h @@ -34,7 +34,7 @@ #include #endif -#if COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT +#if defined (COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT) #include #endif @@ -53,7 +53,7 @@ struct _CoglRenderer GModule *libgl_module; #endif -#if COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT +#if defined (COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT) struct wl_display *foreign_wayland_display; struct wl_compositor *foreign_wayland_compositor; #endif diff --git a/cogl/cogl.h b/cogl/cogl.h index 6c783d370..5def2115b 100644 --- a/cogl/cogl.h +++ b/cogl/cogl.h @@ -93,7 +93,7 @@ typedef struct _CoglFramebuffer CoglFramebuffer; #include #include #endif -#if COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT +#if defined (COGL_HAS_EGL_PLATFORM_WAYLAND_SUPPORT) #include #endif /* XXX: This will definitly go away once all the Clutter winsys