summaryrefslogtreecommitdiff
path: root/sdk/recipes/patches
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2014-01-14 23:30:12 +0000
committerJohn-Mark Bell <jmb@netsurf-browser.org>2014-01-17 18:55:42 +0000
commit92200bd9ffebb81769913dc60fbb367cd21b893d (patch)
treee1700b45df9bb16898a269d0f9259f201f2b0b28 /sdk/recipes/patches
parent6bb0b771b22b3d12cb6f2f94cdbb9251db9ca973 (diff)
downloadtoolchains-92200bd9ffebb81769913dc60fbb367cd21b893d.tar.gz
toolchains-92200bd9ffebb81769913dc60fbb367cd21b893d.tar.bz2
Remove liblcms and libmng: no longer used
Diffstat (limited to 'sdk/recipes/patches')
-rw-r--r--sdk/recipes/patches/liblcms/m68k-atari-mint/sqrtf.p13
-rw-r--r--sdk/recipes/patches/liblcms/ppc-amigaos/memory.h.p10
-rw-r--r--sdk/recipes/patches/libmng/makefile.unix.p50
3 files changed, 0 insertions, 73 deletions
diff --git a/sdk/recipes/patches/liblcms/m68k-atari-mint/sqrtf.p b/sdk/recipes/patches/liblcms/m68k-atari-mint/sqrtf.p
deleted file mode 100644
index dad4aa8..0000000
--- a/sdk/recipes/patches/liblcms/m68k-atari-mint/sqrtf.p
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/lcms2_internal.h 2010-11-29 16:11:49.000000000 +0000
-+++ src/lcms2_internal.h 2011-05-14 02:22:34.000000000 +0100
-@@ -52,6 +52,10 @@
- #define sqrtf(x) (float)sqrt((float)x)
- #endif
-
-+// MiNTLib omits sqrtf
-+#ifdef __MINT__
-+#define sqrtf(x) (float)sqrt((float)x)
-+#endif
-
- // Alignment of ICC file format uses 4 bytes (cmsUInt32Number)
- #define _cmsSIZEOFLONGMINUS1 (sizeof(cmsUInt32Number)-1)
diff --git a/sdk/recipes/patches/liblcms/ppc-amigaos/memory.h.p b/sdk/recipes/patches/liblcms/ppc-amigaos/memory.h.p
deleted file mode 100644
index 4f44bc2..0000000
--- a/sdk/recipes/patches/liblcms/ppc-amigaos/memory.h.p
+++ /dev/null
@@ -1,10 +0,0 @@
---- include/lcms2_plugin.h.orig 2011-03-08 22:56:29.000000000 +0000
-+++ include/lcms2_plugin.h 2011-03-08 22:56:44.000000000 +0000
-@@ -50,7 +50,6 @@
- #include <stdlib.h>
- #include <math.h>
- #include <stdarg.h>
--#include <memory.h>
- #include <string.h>
-
-
diff --git a/sdk/recipes/patches/libmng/makefile.unix.p b/sdk/recipes/patches/libmng/makefile.unix.p
deleted file mode 100644
index 46c2cb7..0000000
--- a/sdk/recipes/patches/libmng/makefile.unix.p
+++ /dev/null
@@ -1,50 +0,0 @@
---- makefiles/makefile.unix.org 2007-12-26 16:20:25.000000000 +0100
-+++ makefiles/makefile.unix 2007-12-26 16:18:02.000000000 +0100
-@@ -7,20 +7,24 @@
- # Configuration options are now in libmng_conf.h
-
- # The name of your C compiler:
--CC= cc
-+CC= $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*gcc)
-+AR= $(wildcard $(GCCSDK_INSTALL_CROSSBIN)/*ar)
-+
-+# where "make install" puts libmng.a,libmng.so*,libmng.h,libmng_conf.h,libmng_types.h
-+prefix=$(GCCSDK_INSTALL_ENV)
-
- # Location of jpeg header files
--JPEG_INC= /cs/include/jpeg
-+JPEG_INC= $(prefix)/include
-
- # Location of zlib header files
--ZLIB_INC= /cs/include
-+ZLIB_INC= $(prefix)/include
-
- # Location of lcms header files
- # (switch on MNG_FULL_CMS in libmng_conf.h if you want to use this)
--LCMS_INC= /ltmp/lcms-1.06/source
-+LCMS_INC= $(prefix)/include
-
- # compiler options:
--CFLAGS= -O -I. -I$(ZLIB_INC) -I$(JPEG_INC) -I$(LCMS_INC)
-+CFLAGS= -O3 -I. -I$(ZLIB_INC) -I$(JPEG_INC) -I$(LCMS_INC)
-
- # source files
- SOURCES= \
-@@ -59,7 +63,16 @@
- /bin/rm -f *~ core
-
- libmng.a: $(OBJECTS)
-- ar r libmng.a $(OBJECTS)
-+ $(AR) r libmng.a $(OBJECTS)
-+
-+INCPATH=$(prefix)/include
-+LIBPATH=$(prefix)/lib
-+
-+install: libmng.a
-+ -@mkdir -p $(INCPATH) $(LIBPATH)
-+ cp libmng.h libmng_conf.h libmng_types.h $(INCPATH)
-+ chmod 644 $(INCPATH)/libmng.h $(INCPATH)/libmng_conf.h $(INCPATH)/libmng_types.h
-+ cp libmng.a $(LIBPATH)
-
- depend:
- makedepend -- $(CFLAGS) $(IFLAGS) -- *.c