summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2018-02-21 15:45:11 +0100
committerEdward Hervey <bilboed@bilboed.com>2018-02-21 15:45:11 +0100
commit3e429aca637461b5e3fb8c9523d88ccc19e2959e (patch)
treee6f91e10dc66d3b0e9f830d6cbada5db77118db7 /recipes
parentbfb6df8cf02d6bf954d9596a173520a97794ba48 (diff)
recipes: Upgrade libjpeg-turbo to 1.5.3
Diffstat (limited to 'recipes')
-rw-r--r--recipes/libjpeg-turbo.recipe6
-rw-r--r--recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch25
2 files changed, 3 insertions, 28 deletions
diff --git a/recipes/libjpeg-turbo.recipe b/recipes/libjpeg-turbo.recipe
index 8ea9fce8..8aa80df6 100644
--- a/recipes/libjpeg-turbo.recipe
+++ b/recipes/libjpeg-turbo.recipe
@@ -3,15 +3,15 @@
class Recipe(recipe.Recipe):
name = 'libjpeg-turbo'
- version = '1.5.1'
+ version = '1.5.3'
licenses = [License.BSD_like]
stype = SourceType.TARBALL
configure_tpl = "%(config-sh)s --prefix=%(prefix)s "\
"--libdir=%(libdir)s"
configure_options = " --with-jpeg8"
autoreconf = True
- url = 'http://downloads.sourceforge.net/project/libjpeg-turbo/1.5.1/libjpeg-turbo-1.5.1.tar.gz'
- patches = ['libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch']
+ url = 'http://downloads.sourceforge.net/project/libjpeg-turbo/%(version)s/libjpeg-turbo-%(version)s.tar.gz'
+ patches = []
files_libs = ['libjpeg','libturbojpeg']
files_devel = ['include/jpeglib.h', 'include/jerror.h', 'include/jconfig.h',
diff --git a/recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch b/recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch
deleted file mode 100644
index f0a1507f..00000000
--- a/recipes/libjpeg-turbo/0001-Include-limits.h-for-SIZE_MAX.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 748e7f74c02b0cb52c708ff231704fdabb40baee Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com>
-Date: Wed, 14 Dec 2016 12:22:42 +0200
-Subject: [PATCH] Include limits.h for SIZE_MAX
-
-Otherwise compilation fails on Android.
----
- jmemmgr.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/jmemmgr.c b/jmemmgr.c
-index adccbdf..b17c5c5 100644
---- a/jmemmgr.c
-+++ b/jmemmgr.c
-@@ -33,6 +33,7 @@
- #include "jpeglib.h"
- #include "jmemsys.h" /* import the system-dependent declarations */
- #include <stdint.h>
-+#include <limits.h>
-
- #ifndef NO_GETENV
- #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare getenv() */
---
-2.11.0
-