From c446540109677b639cdba2ff3f89899a4866c571 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 15 Sep 2008 20:54:03 +0000 Subject: Fix build if NETSURF_USE_PNG := yes and NETSURF_USE_MNG := no svn path=/trunk/netsurf/; revision=5332 --- content/content_type.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'content/content_type.h') diff --git a/content/content_type.h b/content/content_type.h index a7c59e85a..b183a45e8 100644 --- a/content/content_type.h +++ b/content/content_type.h @@ -43,8 +43,10 @@ typedef enum { CONTENT_BMP, CONTENT_ICO, #endif -#ifdef WITH_MNG +#if defined(WITH_MNG) || defined(WITH_PNG) CONTENT_PNG, +#endif +#ifdef WITH_MNG CONTENT_JNG, CONTENT_MNG, #endif -- cgit v1.2.3