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
This commit is contained in:
François Revel 2008-09-15 21:12:48 +00:00
parent c446540109
commit 8c2a7e23de
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#include <string.h>
#include <stdlib.h>
#include <libpng/png.h>
#include <png.h>
#include "utils/config.h"

View File

@ -21,7 +21,7 @@
#define _NETSURF_RISCOS_PNG_H_
#include <stdbool.h>
#include <libpng/png.h>
#include <png.h>
struct content;
struct bitmap;