Source: seahorse Version: 3.20.0-5 Tags: patch upstream User: helm...@debian.org Usertags: rebootstrap Control: affects 889920 + src:seahorse Control: affects 889925 + src:seahorse
seahorse fails to cross build from source, because it use the build architecture pkg-config (via AC_PATH_PROG rather than AC_PATH_TOOL) and thus fails to find relevant libraries. The attached patch fixes that. Then it fails due to the general valac mess reported in #889920 and #889925. Please just fix the pkg-config stuff here and close this bug. Helmut
Index: seahorse-3.20.0/configure.ac =================================================================== --- seahorse-3.20.0.orig/configure.ac +++ seahorse-3.20.0/configure.ac @@ -30,7 +30,7 @@ AM_PROG_CC_C_O AC_PROG_INTLTOOL([0.35.0]) AC_PROG_RANLIB -AC_PATH_PROG(PKG_CONFIG, pkg-config, no) +PKG_PROG_PKG_CONFIG GETTEXT_PACKAGE=seahorse AC_SUBST(GETTEXT_PACKAGE)