summaryrefslogtreecommitdiff
path: root/image/png.h
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2008-09-15 21:12:48 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2008-09-15 21:12:48 +0000
commit8c2a7e23de1f6d103851c838356ca8a5c474ddf0 (patch)
treeb8cb8a08b2d4de72015a367b71ccbf79ace82a7f /image/png.h
parentc446540109677b639cdba2ff3f89899a4866c571 (diff)
downloadnetsurf-8c2a7e23de1f6d103851c838356ca8a5c474ddf0.tar.gz
netsurf-8c2a7e23de1f6d103851c838356ca8a5c474ddf0.tar.bz2
Fix include path for libpng.
Libpng mandates using <png.h>, if it doesn't work for you, fix your OS :D (or use -I) See http://www.libpng.org/pub/png/libpng-1.2.5-manual.html#section-2 svn path=/trunk/netsurf/; revision=5333
Diffstat (limited to 'image/png.h')
-rw-r--r--image/png.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/image/png.h b/image/png.h
index 5350ec61d..521881136 100644
--- a/image/png.h
+++ b/image/png.h
@@ -21,7 +21,7 @@
#define _NETSURF_RISCOS_PNG_H_
#include <stdbool.h>
-#include <libpng/png.h>
+#include <png.h>
struct content;
struct bitmap;