[Xfce4-commits] <xfce4-panel:master> Disable the gtk3 library by default.

Nick Schermer noreply at xfce.org
Sat Nov 30 17:12:26 CET 2013


Updating branch refs/heads/master
         to 1088908c551a7f2b0116b0e702122521cd69dde9 (commit)
       from c88fbb8983af1a853dc444bac536ccc09cfad661 (commit)

commit 1088908c551a7f2b0116b0e702122521cd69dde9
Author: Nick Schermer <nick at xfce.org>
Date:   Sat Nov 30 17:05:29 2013 +0100

    Disable the gtk3 library by default.

 configure.ac.in |    8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 3e60d54..69126fd 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -146,7 +146,7 @@ dnl *** Optional support for a GTK+3 version of the library ***
 dnl ***********************************************************
 XDT_CHECK_OPTIONAL_PACKAGE([GTK3],
                            [gtk+-3.0], [3.2.0], [gtk3],
-                           [GTK+ 3 support])
+                           [GTK+ 3 support], [no])
 AM_CONDITIONAL([ENABLE_GTK3_LIBRARY], [test "x$GTK3_FOUND" = "xyes"])
 
 dnl **********************************
@@ -278,5 +278,9 @@ echo "Build Configuration:"
 echo
 echo "* Debug Support:          $enable_debug"
 echo "* GNU Visibility:         $have_gnuc_visibility"
-echo "* GTK+ 3 Support:         $GTK3_FOUND"
+if test x"$GTK3_FOUND" = x"yes"; then
+echo "* GTK+ 3 Support:         yes"
+else
+echo "* GTK+ 3 Support:         no"
+fi
 echo


More information about the Xfce4-commits mailing list