Source: libxs Severity: normal Tags: ftbfs Hi,
With the recent libpgm 5.3 release currently in experimental libxs fails to build. It still checks only for the 5.2 release. Attached patch fixes this issue as soon I'm going to ask for libpgm transition for unstable. Question is, do you want to keep libxs in the archives? Its upstream has disappeared and popcon is only nine users. Regards, Laszlo/GCS
Description: search for libpgm 5.3+ Simply update configure checking. Author: Laszlo Boszormenyi (GCS) <g...@debian.org> Last-Update: 2020-10-10 --- --- libxs-1.2.0.orig/configure.ac +++ libxs-1.2.0/configure.ac @@ -408,7 +408,7 @@ AS_IF([test "x$enable_plugins" != "xno"] # PGM extension libxs_pgm_ext="no" -pgm_basename="libpgm-5.1.118~dfsg" +pgm_basename="libpgm-5.3.128~dfsg" AC_ARG_WITH([pgm], [AS_HELP_STRING([--with-pgm], [build libxs with PGM extension [default=no]])], @@ -473,7 +473,7 @@ AS_IF([test "x$with_pgm_ext" != "xno"], # Build with system openpgm AS_IF([test "x$with_system_pgm_ext" != "xno"], [ m4_ifdef([PKG_CHECK_MODULES], [ - PKG_CHECK_MODULES([OpenPGM], [openpgm-5.2 >= 5.2]) + PKG_CHECK_MODULES([OpenPGM], [openpgm-5.3 >= 5.3]) AC_DEFINE([XS_HAVE_OPENPGM], [1], [Have OpenPGM extension]) LIBXS_EXTRA_CXXFLAGS="$OpenPGM_CFLAGS $LIBXS_EXTRA_CXXFLAGS" ],