Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 1 | From 2adaa7366064a8f18af864eda74e52877a89620c Mon Sep 17 00:00:00 2001 |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Mon, 18 Jan 2016 01:00:30 -0500 |
Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 4 | Subject: [PATCH] configure.ac: do not check local png source |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 5 | |
| 6 | In oe-core, it did not need to compile local libpng |
| 7 | source in ghostscript, so do not check local png |
| 8 | source, and directly check the existance of shared |
| 9 | libpng library. |
| 10 | |
| 11 | Upstream-Status: Inappropriate [OE-Core specific] |
| 12 | |
| 13 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 14 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 15 | --- |
Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 16 | configure.ac | 2 +- |
| 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 18 | |
| 19 | diff --git a/configure.ac b/configure.ac |
Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 20 | index 698abd3..e65ac8b 100644 |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 21 | --- a/configure.ac |
| 22 | +++ b/configure.ac |
Andrew Geissler | 4b740dc | 2020-05-05 08:54:39 -0500 | [diff] [blame] | 23 | @@ -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 |