blob: a9afb9948cdff6fdebe3afa8ea3d5738ed9e4127 [file] [log] [blame]
Andrew Geissler4b740dc2020-05-05 08:54:39 -05001From 2adaa7366064a8f18af864eda74e52877a89620c Mon Sep 17 00:00:00 2001
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05002From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 18 Jan 2016 01:00:30 -0500
Andrew Geissler4b740dc2020-05-05 08:54:39 -05004Subject: [PATCH] configure.ac: do not check local png source
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05005
6In oe-core, it did not need to compile local libpng
7source in ghostscript, so do not check local png
8source, and directly check the existance of shared
9libpng library.
10
11Upstream-Status: Inappropriate [OE-Core specific]
12
13Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Andrew Geissler4b740dc2020-05-05 08:54:39 -050014
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050015---
Andrew Geissler4b740dc2020-05-05 08:54:39 -050016 configure.ac | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018
19diff --git a/configure.ac b/configure.ac
Andrew Geissler4b740dc2020-05-05 08:54:39 -050020index 698abd3..e65ac8b 100644
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050021--- a/configure.ac
22+++ b/configure.ac
Andrew Geissler4b740dc2020-05-05 08:54:39 -050023@@ -1241,7 +1241,7 @@ else
24 PNGDEVS=''
25 PNGDEVS_ALL='png48 png16m pnggray pngmono pngmonod png256 png16 pngalpha'
26 AC_MSG_CHECKING([for local png library source])
27- if test -f $srcdir/libpng/pngread.c; then
28+ if false; then
29 AC_MSG_RESULT([yes])
30 SHARE_LIBPNG=0
31 LIBPNGDIR=$srcdir/libpng