summaryrefslogtreecommitdiff
path: root/image/png.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-08-28 14:29:15 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-08-28 14:29:15 +0000
commitcd554e6f1e42c440c791845a1a635415b23a19a2 (patch)
tree7079b2d0e4e4a24c9f5687d6cee9ce3b0c93b2f9 /image/png.h
parent401072e305c152b42d99d94b2283cf928562f132 (diff)
downloadnetsurf-cd554e6f1e42c440c791845a1a635415b23a19a2.tar.gz
netsurf-cd554e6f1e42c440c791845a1a635415b23a19a2.tar.bz2
make image content handlers build conditional from teh makefile
svn path=/trunk/netsurf/; revision=12673
Diffstat (limited to 'image/png.h')
-rw-r--r--image/png.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/image/png.h b/image/png.h
index 1119b6a43..c14521ae8 100644
--- a/image/png.h
+++ b/image/png.h
@@ -20,22 +20,7 @@
#ifndef _NETSURF_RISCOS_PNG_H_
#define _NETSURF_RISCOS_PNG_H_
-#include "utils/config.h"
-
-#ifdef WITH_PNG
-
-#include <stdbool.h>
-
-#include "utils/errors.h"
-
nserror nspng_init(void);
void nspng_fini(void);
-#else
-
-#define nspng_init() NSERROR_OK
-#define nspng_fini() ((void) 0)
-
-#endif
-
#endif