From: Klaus Ethgen Date: Sun, 28 Jul 2019 19:58:28 +0000 (+0100) Subject: Limiting to more recent version of glib X-Git-Tag: v1.6~161^2~6 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=9d91f2e2908dce6a2df85154926a1bc49e4decf8 Limiting to more recent version of glib g_utf8_make_valid was implemented with glib 2.52. That also causes builds on ubuntu trusty fail. --- diff --git a/.travis.yml b/.travis.yml index 6229169e..245451b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,12 @@ language: c os: linux -dist: trusty +dist: bionic sudo: required compiler: - gcc - clang addons: apt: - sources: - - trusty packages: - autoconf - automake diff --git a/configure.ac b/configure.ac index caf56fac..f376d074 100644 --- a/configure.ac +++ b/configure.ac @@ -197,7 +197,7 @@ else prefix=$prefix fi -AM_PATH_GLIB_2_0(2.24.0,,AC_MSG_ERROR(GLIB >= 2.24.0 not installed.)) +AM_PATH_GLIB_2_0(2.52.0,,AC_MSG_ERROR(GLIB >= 2.52.0 not installed.)) AC_ARG_ENABLE([gtk3], AC_HELP_STRING([--disable-gtk3], [use gtk2 instead of gtk3]),[gtk3="${enableval}"], [gtk3=m4_ifdef([AM_PATH_GTK_3_0], [auto], [no])]) if test x$gtk3 = xyes; then