Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame^] | 1 | From 5ef8b85bc98f3bd9a15d5f47e24d3e23ae27c265 Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Mon, 18 Jan 2016 01:00:30 -0500 |
| 4 | Subject: [PATCH] configure.ac: do not check local png source |
| 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> |
| 14 | --- |
| 15 | configure.ac | 4 ++-- |
| 16 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 17 | |
| 18 | diff --git a/configure.ac b/configure.ac |
| 19 | index ab30a97..b762fd7 100644 |
| 20 | --- a/configure.ac |
| 21 | +++ b/configure.ac |
| 22 | @@ -955,11 +955,11 @@ AC_SUBST(ZLIBDIR) |
| 23 | AC_SUBST(FT_SYS_ZLIB) |
| 24 | |
| 25 | dnl png for the png output device; it also requires zlib |
| 26 | -LIBPNGDIR=src |
| 27 | +LIBPNGDIR=$srcdir/libpng |
| 28 | PNGDEVS='' |
| 29 | PNGDEVS_ALL='png48 png16m pnggray pngmono png256 png16 pngalpha' |
| 30 | AC_MSG_CHECKING([for local png library source]) |
| 31 | -if test -f $srcdir/libpng/pngread.c; then |
| 32 | +if false; then |
| 33 | AC_MSG_RESULT([yes]) |
| 34 | SHARE_LIBPNG=0 |
| 35 | LIBPNGDIR=$srcdir/libpng |
| 36 | -- |
| 37 | 1.9.1 |
| 38 | |