aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch
diff options
context:
space:
mode:
authorWenzong Fan <wenzong.fan@windriver.com>2013-06-24 22:56:26 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-06-25 17:43:43 +0100
commitaea8f29275fd7c2341c429b46c25e17afe532b3e (patch)
treea8b61292f9b7cc0292687dea75a49c63d0f7a660 /meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch
parent6b7ab43722a94e7a0ced72ffb7497e5d507a39cd (diff)
downloadopenembedded-core-contrib-aea8f29275fd7c2341c429b46c25e17afe532b3e.tar.gz
ghostscript: upgrade to 9.07
Remove unuseful patch: * 0001-make-ghostscript-work-with-long-building-directory.patch Port applicable patches: * ghostscript-9.02-genarch.patch * ghostscript-9.02-parallel-make.patch * ghostscript-9.02-prevent_recompiling.patch * ghostscript-9.05-NOT-check-endian.patch * ghostscript-native-fix-disable-system-libtiff.patch Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch')
-rw-r--r--meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch13
1 files changed, 6 insertions, 7 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch
index ce254f6ece..40afd372d1 100644
--- a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch
+++ b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-native-fix-disable-system-libtiff.patch
@@ -11,38 +11,37 @@ diff --git a/base/configure.ac b/base/configure.ac
index bb05105..4b817ac 100644
--- a/base/configure.ac
+++ b/base/configure.ac
-@@ -814,17 +814,23 @@ Disabling tiff output devices.])
+@@ -951,17 +951,22 @@
esac
if test $SHARE_LIBTIFF -eq 0; then
- echo
- echo "Running libtiff configure script..."
- olddir=`pwd`
-- cd $LIBTIFFDIR && ./configure --disable-jbig $SUBCONFIG_OPTS
+- cd "$LIBTIFFDIR" && ./configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
- status=$?
- if test "$status" -ne 0 ; then
- AC_MSG_ERROR([libtiff configure script failed], $status)
- fi
-- cd $olddir
+- cd "$olddir"
- echo
- echo "Continuing with Ghostscript configuration..."
+ if test -e $LIBTIFFDIR/configure; then
+ echo
+ echo "Running libtiff configure script..."
+ olddir=`pwd`
-+ cd $LIBTIFFDIR && ./configure --disable-jbig $SUBCONFIG_OPTS
++ cd "$LIBTIFFDIR" && ./configure --disable-jbig --disable-lzma $SUBCONFIG_OPTS
+ status=$?
+ if test "$status" -ne 0 ; then
-+ AC_MSG_ERROR([libtiff configure script failed], $status)
++ AC_MSG_ERROR([libtiff configure script failed], $status)
+ fi
-+ cd $olddir
++ 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)