configure: Flip default to GTK3

This is the primary target for GNOME 3, so it makes sense to have
it be the default.
This commit is contained in:
Colin Walters 2010-10-05 12:07:53 -04:00
parent dc7d323295
commit 069092eb9d

View File

@ -129,13 +129,13 @@ changequote([,])dnl
AC_MSG_CHECKING([which gtk+ version to compile against]) AC_MSG_CHECKING([which gtk+ version to compile against])
AC_ARG_WITH([gtk], AC_ARG_WITH([gtk],
AC_HELP_STRING([--with-gtk=2.0|3.0], AC_HELP_STRING([--with-gtk=3.0|2.0],
[which gtk+ version to compile against (default: 2)]), [which gtk+ version to compile against (default: 3.0)]),
[case "$with_gtk" in [case "$with_gtk" in
2.0|3.0) ;; 2.0|3.0) ;;
*) AC_MSG_ERROR([invalid gtk+ version specified]);; *) AC_MSG_ERROR([invalid gtk+ version specified]);;
esac], esac],
[with_gtk=2.0]) [with_gtk=3.0])
AC_MSG_RESULT([$with_gtk]) AC_MSG_RESULT([$with_gtk])
case "$with_gtk" in case "$with_gtk" in