mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 08:59:41 +01:00
- Ghostscript and GhostPDL releases from version 9.19 have been moved to GitHub hosting, tweak download site - Drop 0001-Bug-696497-Fix-support-for-building-with-no-jbig2-de.patch, and 0002-Bug-696497-part-2-fix-support-for-building-with-a-JP.patch, ghostscript 9.19 has fixed them. - Fix QA Warning unrecognised options: --enable-little-endian. It use AC_C_BIGENDIAN to detect big/little endian. http://www.delorie.com/gnu/docs/autoconf/autoconf_64.html (From OE-Core rev: 227ca0a373b5a93602a419296ff1da1a96615ba2) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
706 B
Diff
33 lines
706 B
Diff
ghostscript: add dependency for pnglibconf.h
|
|
|
|
When using parallel make jobs, we need to be sure that
|
|
pnglibconf.h is created before we try to reference it,
|
|
so add a rule to png.mak.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Joe Slater <jslater@windriver.com>
|
|
|
|
Rebase to 9.19
|
|
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
|
|
---
|
|
base/png.mak | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/base/png.mak b/base/png.mak
|
|
index fe5c6e2..8abb53a 100644
|
|
--- a/base/png.mak
|
|
+++ b/base/png.mak
|
|
@@ -74,6 +74,8 @@ png.clean-not-config-clean :
|
|
|
|
pnglibconf_h=$(PNGGENDIR)$(D)pnglibconf.h
|
|
|
|
+$(MAKEDIRS) : $(pnglibconf_h)
|
|
+
|
|
png.config-clean :
|
|
$(RM_) $(pnglibconf_h)
|
|
$(RM_) $(PNGGEN)lpg*.dev
|
|
--
|
|
2.8.1
|
|
|