aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Verona2011-07-12 02:47:40 +0200
committerJoakim Verona2011-07-12 02:47:40 +0200
commit347166ea436327f6ded4550ed004d43f6042f6b4 (patch)
treea41a0f7fe077c20704081a7283e1b47e1873f5d0
parent26b79791a30bbf4702d669d60e99ce09f2cf75b0 (diff)
downloademacs-347166ea436327f6ded4550ed004d43f6042f6b4.tar.gz
emacs-347166ea436327f6ded4550ed004d43f6042f6b4.zip
more configure support and cleanups.
-rw-r--r--configure.in17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure.in b/configure.in
index 2cf33979585..b19f5c888b8 100644
--- a/configure.in
+++ b/configure.in
@@ -1960,12 +1960,13 @@ if test "${with_xwidgets}" != "no"; then
1960 WEBKIT_REQUIRED=1.4.0 1960 WEBKIT_REQUIRED=1.4.0
1961 WEBKIT_MODULES="webkitgtk-3.0 >= $WEBKIT_REQUIRED" 1961 WEBKIT_MODULES="webkitgtk-3.0 >= $WEBKIT_REQUIRED"
1962 1962
1963 PKG_CHECK_MODULES(WEBKIT, $WEBKIT_MODULES, HAVE_WEBKIT=yes, HAVE_WEBKIT=no) 1963 if test "${with_gtk3}" = "yes"; then
1964 if test $HAVE_WEBKIT = yes; then 1964 PKG_CHECK_MODULES(WEBKIT, $WEBKIT_MODULES, HAVE_WEBKIT=yes, HAVE_WEBKIT=no)
1965# AC_DEFINE(HAVE_WEBKIT, 1, [Define to 1 if you have webkit support.]) 1965 if test $HAVE_WEBKIT = yes; then
1966 AC_DEFINE(HAVE_WEBKIT_OSR, 1, [Define to 1 if you have webkit_osr support.]) 1966 AC_DEFINE(HAVE_WEBKIT_OSR, 1, [Define to 1 if you have webkit_osr support.])
1967 fi
1967 fi 1968 fi
1968 1969
1969 CLUTTER_REQUIRED=1.0.0 1970 CLUTTER_REQUIRED=1.0.0
1970 CLUTTER_MODULES="clutter-gtk-1.0 >= $CLUTTER_REQUIRED" 1971 CLUTTER_MODULES="clutter-gtk-1.0 >= $CLUTTER_REQUIRED"
1971 1972
@@ -3707,9 +3708,9 @@ echo " Does Emacs use -lxft? ${HAVE_XFT}"
3707echo " Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}" 3708echo " Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
3708 3709
3709echo " Does Emacs support Xwidgets? ${HAVE_XWIDGETS}" 3710echo " Does Emacs support Xwidgets? ${HAVE_XWIDGETS}"
3710echo " Does xwidgets support webkit? ${HAVE_WEBKIT}" 3711echo " Does xwidgets support webkit(requires gtk3)? ${HAVE_WEBKIT}"
3711echo " Does xwidgets support clutter? ${HAVE_CLUTTER}" 3712echo " Does xwidgets support clutter(demo code)? ${HAVE_CLUTTER}"
3712echo " Does xwidgets support goocanvas? ${HAVE_GOOCANVAS}" 3713echo " Does xwidgets support goocanvas(demo code)? ${HAVE_GOOCANVAS}"
3713echo 3714echo
3714 3715
3715if test $USE_XASSERTS = yes; then 3716if test $USE_XASSERTS = yes; then