From 658f30ec43c654fea8cd5e60fa7736791648e5c8 Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 1 Mar 2015 08:42:26 -0500 Subject: [PATCH] configure: Don't depend on gtk-2.0.m4 It doesn't really add much value and it is possible to build fetext without gtk installed --- configure.ac | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/configure.ac b/configure.ac index ea7f16e4..6a8b7945 100644 --- a/configure.ac +++ b/configure.ac @@ -190,21 +190,15 @@ dnl ********************************************************************* dnl ** GTK ************************************************************** dnl ********************************************************************* -# we might get undefined macro without this test if test "$gtkfe" = yes ; then - AM_PATH_GTK_2_0(2.24.0, havegtk=yes, havegtk=no) - - if test "$havegtk" = no; then + PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.24.0], [ + GUI_LIBS="$GUI_LIBS $GTK_LIBS" + GUI_CFLAGS="$GUI_CFLAGS $GTK_CFLAGS -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_DEPRECATED" + ], [ gtkfe=no - echo - echo Cannot find GTK\! Not building GTK FrontEnd. - echo - fi + ]) fi -GUI_LIBS="$GUI_LIBS $GTK_LIBS" -GUI_CFLAGS="$GUI_CFLAGS $GTK_CFLAGS -DG_DISABLE_SINGLE_INCLUDES -DGDK_PIXBUF_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_SINGLE_INCLUDES -DGTK_DISABLE_DEPRECATED" - dnl ********************************************************************* dnl ** MAC_INTEGRATION ************************************************** dnl *********************************************************************