diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-10-04 23:12:20 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-08 11:22:24 +0100 |
commit | 0221e2e6e1948a5b22255df8aefcb665e7114e26 (patch) | |
tree | 4c1e67e7eec316ca149678666c19edd044c056eb /meta/recipes-extended/ghostscript/ghostscript_9.27.bb | |
parent | bf4a21e4644354fbed2e74e685e8a66e1cc0718d (diff) | |
download | poky-0221e2e6e1948a5b22255df8aefcb665e7114e26.tar.gz |
ghostscript: Disable libpaper
OE does not provide libpaper recipe, and the configure check looks for
libpaper if not disabled, this causes problems especially when shared
state is built on a machine which has libpaper installed on host but the
consumer machine although running same OS, but does not have libpaper
installed, the artifact from sstate are re-used but then native binary
./obj/aux/packps fails to execute
./obj/aux/packps: error while loading shared libraries: libpaper.so.1: cannot open shared object file: No such file or directory
So either we need to provide libpaper in OE or we disable it, disabling
is best for now
(From OE-Core rev: 11e85220d97299be5f65d5208ec21d4ad215317a)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ghostscript/ghostscript_9.27.bb')
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript_9.27.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.27.bb b/meta/recipes-extended/ghostscript/ghostscript_9.27.bb index 349c0c2e8b..9e1f3e2f49 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_9.27.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_9.27.bb | |||
@@ -59,7 +59,7 @@ PACKAGECONFIG[x11] = "--with-x --x-includes=${STAGING_INCDIR} --x-libraries=${ST | |||
59 | --without-x, virtual/libx11 libxext libxt gtk+3\ | 59 | --without-x, virtual/libx11 libxext libxt gtk+3\ |
60 | " | 60 | " |
61 | 61 | ||
62 | EXTRA_OECONF = "--with-system-libtiff --without-jbig2dec \ | 62 | EXTRA_OECONF = "--without-libpaper --with-system-libtiff --without-jbig2dec \ |
63 | --with-fontpath=${datadir}/fonts \ | 63 | --with-fontpath=${datadir}/fonts \ |
64 | --without-libidn --with-cups-serverbin=${exec_prefix}/lib/cups \ | 64 | --without-libidn --with-cups-serverbin=${exec_prefix}/lib/cups \ |
65 | --with-cups-datadir=${datadir}/cups \ | 65 | --with-cups-datadir=${datadir}/cups \ |
@@ -71,7 +71,7 @@ EXTRA_OECONF_append_mipsarcho32 = " --with-large_color_index=0" | |||
71 | # Explicity disable libtiff, fontconfig, | 71 | # Explicity disable libtiff, fontconfig, |
72 | # freetype, cups for ghostscript-native | 72 | # freetype, cups for ghostscript-native |
73 | EXTRA_OECONF_class-native = "--without-x --with-system-libtiff=no \ | 73 | EXTRA_OECONF_class-native = "--without-x --with-system-libtiff=no \ |
74 | --without-jbig2dec \ | 74 | --without-jbig2dec --without-libpaper \ |
75 | --with-fontpath=${datadir}/fonts \ | 75 | --with-fontpath=${datadir}/fonts \ |
76 | --without-libidn --disable-fontconfig \ | 76 | --without-libidn --disable-fontconfig \ |
77 | --disable-freetype --disable-cups" | 77 | --disable-freetype --disable-cups" |