From ca04892cc320152ae736c2634ab4b7adb7c3dfe1 Mon Sep 17 00:00:00 2001 From: Till Kamppeter Date: Thu, 24 Nov 2022 20:07:29 +0100 Subject: [PATCH] libcupsfilters does not use glib, removed the check in configure.ac. As a remainder of the old cups-filters there was still a check for glib which made ./configure error out with glib absent. Removed this. --- CHANGES.md | 4 ++++ configure.ac | 21 --------------------- 2 files changed, 4 insertions(+), 21 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a52d3856b..882c92c36 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # CHANGES - OpenPrinting libcupsfilters v2.0b1 - 2022-11-17 +## CHANGES IN V2.0b2 (TBA) + +- libcupsfilters does not use glib, removed the check in configure.ac. + ## CHANGES IN V2.0b1 (17th November 2022) - Introduced the filter functions concept converting filter diff --git a/configure.ac b/configure.ac index 161e7cb2c..14f6f7197 100644 --- a/configure.ac +++ b/configure.ac @@ -238,8 +238,6 @@ AC_SUBST(EXIF_CFLAGS) # ====================== AVAHI_LIBS="" AVAHI_CFLAGS="" -AVAHI_GLIB_CFLAGS="" -AVAHI_GLIB_LIBS="" AC_ARG_ENABLE([avahi], [AS_HELP_STRING([--disable-avahi], [Disable DNS Service Discovery support using Avahi.])], @@ -263,25 +261,6 @@ fi AC_SUBST(AVAHI_LIBS) AC_SUBST(AVAHI_CFLAGS) -PKG_CHECK_MODULES(GLIB, [glib-2.0 >= 2.30.2]) -AC_SUBST(GLIB_CFLAGS) -AC_SUBST(GLIB_LIBS) - -if test x$enable_avahi != xno; then - PKG_CHECK_MODULES(AVAHI_GLIB, [avahi-glib]) -fi - -AC_SUBST(AVAHI_GLIB_CFLAGS) -AC_SUBST(AVAHI_GLIB_LIBS) - -PKG_CHECK_MODULES(GIO, [gio-2.0]) -AC_SUBST(GIO_CFLAGS) -AC_SUBST(GIO_LIBS) - -PKG_CHECK_MODULES(GIO_UNIX, [gio-unix-2.0]) -AC_SUBST(GIO_UNIX_CFLAGS) -AC_SUBST(GIO_UNIX_LIBS) - # ========================================== # Check for various required modules for PDF # ==========================================