From c63b5843ca1bb56bb825ba0521c3df81861f88c4 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 6 Feb 2020 23:59:49 +0100 Subject: [PATCH] Do not depend on pangox pangox has been removed from Pango years ago breaking the build on modern distros. Gnash does not actually use pango directly at all. It looks like it was added for static linking against GTK when not using pkg-config but it was not updated or limited to non-pkg-config GTK builds (pkg-config would provide the necessary transitive dependencies automatically). The proper solution would be removing all the pango checks and relying on pkg-config but as a quick hack this should suffice. --- macros/pango.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/pango.m4 b/macros/pango.m4 index 96f0457e2..6f24eb2a2 100644 --- a/macros/pango.m4 +++ b/macros/pango.m4 @@ -34,7 +34,7 @@ AC_DEFUN([GNASH_PATH_PANGO], if test x$windows = xyes; then pango_pkg=pangowin32 else - pango_pkg=pangox + pango_pkg=pango fi if test x$cross_compiling = xno; then -- 2.25.0