mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 00:49:41 +01:00
- The LICENSE added AGPL for the font files (in Resource/Font); - Rebase ghostscript-9.02-parallel-make.patch to 9.14 - Rebase ghostscript-native-fix-disable-system-libtiff.patch since base/configure.ac has been moved to configure.ac. http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=f1488c5aff54f37ee67759827d4298592af5dbc8 - Obsolete ghostscript-9.05-NOT-check-endian.patch, and add option '--enable-little-endian'/'--enable-big-endian' conditionally to intead. http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=e76dc46756e89a14a3348bce12a633d32e4fa831 - Add base-genht.c-add-a-preprocessor-define-to-allow-fope.patch for native, since the upstream replace all fopen calls with gp_fopen and add a preprocessor define so that any unintential calls directly to fopen will cause an error. This patch add a preprocessor define to allow fopen calling in base/genht.c as exceptions. http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=773c69e46e70bdd5482676437dafd2ca83397643 - Remove package ghostscript-cups, since CUPS filters gstoraster and gstopxl has been moved to cups-filters which is a free software package hosted by OpenPrinting. http://git.ghostscript.com/?p=ghostpdl.git;a=commitdiff;h=9304a21699a6c17579fae32f44f5c92a37c13e2d http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters (From OE-Core rev: 44ad25519b8e290f9a98b88eeec52ba199e76431) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
900 B
Diff
38 lines
900 B
Diff
ghostscript-native:fix disable-system-libtiff
|
|
|
|
Modify configure to add the check to make sure
|
|
ghostscrip could work while system-libtiff is
|
|
disabled.
|
|
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
Upstream-Status: Pending
|
|
---
|
|
configure.ac | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -1055,6 +1055,7 @@ Disabling tiff output devices.])
|
|
esac
|
|
|
|
if test $SHARE_LIBTIFF -eq 0; then
|
|
+ if test -e $LIBTIFFDIR/configure; then
|
|
echo
|
|
echo "Running libtiff configure script..."
|
|
olddir=`pwd`
|
|
@@ -1069,6 +1070,10 @@ if test $SHARE_LIBTIFF -eq 0; then
|
|
cd "$olddir"
|
|
echo
|
|
echo "Continuing with Ghostscript configuration..."
|
|
+ else
|
|
+ AC_MSG_NOTICE([Could not find local copy of libtiff.
|
|
+Disabling tiff output devices.])
|
|
+ fi
|
|
fi
|
|
|
|
AC_SUBST(SHARE_LIBTIFF)
|
|
--
|
|
1.8.1.2
|
|
|