Author: chris_y
Date: Sun Oct 31 12:06:44 2010
New Revision: 10931
URL:
http://source.netsurf-browser.org?rev=10931&view=rev
Log:
More sane archive creation
Avoid type conflicts in header
Modified:
trunk/libwebp/makefile
trunk/libwebp/webpimg.h
Modified: trunk/libwebp/makefile
URL:
http://source.netsurf-browser.org/trunk/libwebp/makefile?rev=10931&r1...
==============================================================================
--- trunk/libwebp/makefile (original)
+++ trunk/libwebp/makefile Sun Oct 31 12:06:44 2010
@@ -32,6 +32,7 @@
######################################################################
libwebp.a: libwebp.o
+ rm libwebp.a
$(AR) -q libwebp.a libwebp.o
libwebp.o: webpimg.c
Modified: trunk/libwebp/webpimg.h
URL:
http://source.netsurf-browser.org/trunk/libwebp/webpimg.h?rev=10931&r...
==============================================================================
--- trunk/libwebp/webpimg.h (original)
+++ trunk/libwebp/webpimg.h Sun Oct 31 12:06:44 2010
@@ -38,9 +38,12 @@
extern "C" {
#endif /* __cplusplus */
-//#include <exec/types.h>
+#ifdef __amigaos4__
+#include <exec/types.h>
+#else
typedef unsigned char uint8;
typedef unsigned int uint32;
+#endif
typedef enum WebPResultType {
webp_success = 0,
webp_failure = -1