From 37a85e35448f8beed2654a4df07a303283a86aac Mon Sep 17 00:00:00 2001 From: rbuj Date: Wed, 12 Feb 2020 23:24:27 +0100 Subject: stickynotes: Use gresources for UI files --- configure.ac | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 060c65d0..5839f41c 100644 --- a/configure.ac +++ b/configure.ac @@ -228,10 +228,28 @@ AC_SUBST(LIBMATEWEATHER_LIBS) AM_CONDITIONAL(BUILD_LIBMATEWEATHER_APPLETS, $build_libmateweather_applets) dnl *************************************************************************** -dnl *** GSettings *** +dnl *** GSettings *** dnl *************************************************************************** GLIB_GSETTINGS +dnl *************************************************************************** +dnl *** GLIB_COMPILE_RESOURCES *** +dnl *************************************************************************** +AC_ARG_VAR([GLIB_COMPILE_RESOURCES],[glib-compile-resources bin]) +AC_PATH_PROG([GLIB_COMPILE_RESOURCES],[glib-compile-resources],[]) +if test -z "$GLIB_COMPILE_RESOURCES"; then + AC_MSG_ERROR([glib-compile-resources not found]) +fi + +dnl *************************************************************************** +dnl *** XMLLINT *** +dnl *************************************************************************** +AC_ARG_VAR([XMLLINT],[xmllint bin]) +AC_PATH_PROG([XMLLINT],[xmllint],[]) +if test -z "$XMLLINT"; then + AC_MSG_ERROR([xmllint not found]) +fi + dnl *************************************************************************** dnl *** Set up gettext *** dnl *************************************************************************** -- cgit v1.2.1