mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 21:32:12 +02:00
This is maintenance release consolidating the changes introduced in 9.50. see : https://www.ghostscript.com/doc/9.52/News.htm Drop all custom objarch.h files; ghostscript nowadays generates that with autoconf. Freetype can no longer be disabled. Building out of source tree is broken. Upgrade include several CVE fixes: CVE-2020-16287 CVE-2020-16288 CVE-2020-16289 CVE-2020-16290 CVE-2020-16291 CVE-2020-16292 CVE-2020-16293 CVE-2020-16294 CVE-2020-16295 CVE-2020-16296 CVE-2020-16297 CVE-2020-16298 CVE-2020-16299 CVE-2020-16300 CVE-2020-16301 CVE-2020-16302 CVE-2020-16303 CVE-2020-16304 CVE-2020-16305 CVE-2020-16308 CVE-2020-16309 CVE-2020-17538 (From OE-Core rev: 1cee5540ca74c38cc483b28f720e345644d6ca9b) Signed-off-by: Lee Chee Yang <chee.yang.lee@intel.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
997 B
Diff
32 lines
997 B
Diff
From 2adaa7366064a8f18af864eda74e52877a89620c Mon Sep 17 00:00:00 2001
|
|
From: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Date: Mon, 18 Jan 2016 01:00:30 -0500
|
|
Subject: [PATCH] configure.ac: do not check local png source
|
|
|
|
In oe-core, it did not need to compile local libpng
|
|
source in ghostscript, so do not check local png
|
|
source, and directly check the existance of shared
|
|
libpng library.
|
|
|
|
Upstream-Status: Inappropriate [OE-Core specific]
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 698abd3..e65ac8b 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1241,7 +1241,7 @@ else
|
|
PNGDEVS=''
|
|
PNGDEVS_ALL='png48 png16m pnggray pngmono pngmonod png256 png16 pngalpha'
|
|
AC_MSG_CHECKING([for local png library source])
|
|
- if test -f $srcdir/libpng/pngread.c; then
|
|
+ if false; then
|
|
AC_MSG_RESULT([yes])
|
|
SHARE_LIBPNG=0
|
|
LIBPNGDIR=$srcdir/libpng
|