From 32298832ed70d5ac7836d46de3df0049b37a3eec Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 16 Feb 2011 15:53:20 +0000 Subject: [PATCH] Allow checking for GDK backends Now that a single shared object can contain multiple backends we also need to provide a simple way for third party code to verify that the copy of GDK they are linking to supports their backend. The simplest way to verify is an m4 macro, GTK_CHECK_BACKEND(), shipped with the gtk+ m4 macros. The usage is pretty basic: GTK_CHECK_BACKEND([x11], [gtk_has_x11=yes], [gtk_has_x11=no]) AM_CONDITIONAL(BUILD_X11_CODE, test "x$gtk_has_x11" = "xno") https://bugzilla.gnome.org/show_bug.cgi?id=642479 --- docs/reference/gtk/compiling.sgml | 28 +++++++++++++++++++++++ docs/reference/gtk/migrating-2to3.xml | 13 +++++++++++ m4macros/gtk-3.0.m4 | 32 +++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) diff --git a/docs/reference/gtk/compiling.sgml b/docs/reference/gtk/compiling.sgml index 58d97edbc..6f593a0d6 100644 --- a/docs/reference/gtk/compiling.sgml +++ b/docs/reference/gtk/compiling.sgml @@ -69,5 +69,33 @@ define the preprocessor symbol GDK_MULTIDEVICE_SAFE by using the command line option -DGTK_MULTIDEVICE_SAFE=1. + + Useful autotools macros + + + GTK+ provides various macros for easily checking version and backends + supported. The macros are + + + AM_PATH_GTK_3_0([minimum-version], [if-found], [if-not-found], [modules]) + This macro should be used to check that GTK+ is installed + and available for compilation. The four arguments are optional, and + they are: minimum-version, the minimum version + of GTK+ required for compilation; if-found, the + action to perform if a valid version of GTK+ has been found; + if-not-found, the action to perform if a valid + version of GTK+ has not been found; modules, a + list of modules to be checked along with GTK+. + + + GTK_CHECK_BACKEND([backend-name], [if-found], [if-not-found]) + This macro should be used to check if a specific backend + is supported by GTK+. The if-found and the + if-not-found arguments are optional. + + + + + diff --git a/docs/reference/gtk/migrating-2to3.xml b/docs/reference/gtk/migrating-2to3.xml index 98a700aba..8be399639 100644 --- a/docs/reference/gtk/migrating-2to3.xml +++ b/docs/reference/gtk/migrating-2to3.xml @@ -891,6 +891,19 @@ gdk_window_add_filter (NULL, message_filter, NULL); } + + If you used the pkg-config variable target to + conditionally build part of your project depending on the GDK backend, + for instance like this: + +AM_CONDITIONAL(BUILD_X11, test `$PKG_CONFIG --variable=target gtk+-2.0` = "x11") + + then you should now use the M4 macro provided by GTK+ itself: + +GTK_CHECK_BACKEND([x11], [have_x11=yes], [have_x11=no]) +AM_CONDITIONAL(BUILD_x11, [test "x$have_x11" = "xyes"]) + +
diff --git a/m4macros/gtk-3.0.m4 b/m4macros/gtk-3.0.m4 index 7d00bc1f6..3147a7692 100644 --- a/m4macros/gtk-3.0.m4 +++ b/m4macros/gtk-3.0.m4 @@ -194,3 +194,35 @@ main () AC_SUBST(GTK_LIBS) rm -f conf.gtktest ]) + +dnl GTK_CHECK_BACKEND(BACKEND-NAME [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) +dnl Tests for BACKEND-NAME in the GTK targets list +dnl +AC_DEFUN([GTK_CHECK_BACKEND], +[ + backend=$1 + if test "x$backend" = "x"; then + AC_MSG_ERROR([A backend must be specified]) + fi + + PKG_PROG_PKG_CONFIG([0.16]) + GDK_TARGETS=`$PKG_CONFIG --variable=targets gdk-3.0` + if test "x$GDK_TARGETS" = "x"; then + ifelse([$3],,[AC_MSG_ERROR([GDK targets not found.])],[$3]) + else + ifelse([$2],,[:],[$2]) + fi + + target_found=no + for target in $GDK_TARGETS; do + if test "x$target" = "x$backend"; then + target_found=yes + fi + done + + if test "x$target_found" = "xno"; then + ifelse([$3],,[AC_MSG_ERROR([Backend $backend not found.])],[$3]) + else + ifelse([$2],,[:],[$2]) + fi +]) -- 2.43.2