diff options
| author | Joakim Verona | 2011-07-12 02:47:40 +0200 |
|---|---|---|
| committer | Joakim Verona | 2011-07-12 02:47:40 +0200 |
| commit | 347166ea436327f6ded4550ed004d43f6042f6b4 (patch) | |
| tree | a41a0f7fe077c20704081a7283e1b47e1873f5d0 | |
| parent | 26b79791a30bbf4702d669d60e99ce09f2cf75b0 (diff) | |
| download | emacs-347166ea436327f6ded4550ed004d43f6042f6b4.tar.gz emacs-347166ea436327f6ded4550ed004d43f6042f6b4.zip | |
more configure support and cleanups.
| -rw-r--r-- | configure.in | 17 |
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}" | |||
| 3707 | echo " Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}" | 3708 | echo " Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}" |
| 3708 | 3709 | ||
| 3709 | echo " Does Emacs support Xwidgets? ${HAVE_XWIDGETS}" | 3710 | echo " Does Emacs support Xwidgets? ${HAVE_XWIDGETS}" |
| 3710 | echo " Does xwidgets support webkit? ${HAVE_WEBKIT}" | 3711 | echo " Does xwidgets support webkit(requires gtk3)? ${HAVE_WEBKIT}" |
| 3711 | echo " Does xwidgets support clutter? ${HAVE_CLUTTER}" | 3712 | echo " Does xwidgets support clutter(demo code)? ${HAVE_CLUTTER}" |
| 3712 | echo " Does xwidgets support goocanvas? ${HAVE_GOOCANVAS}" | 3713 | echo " Does xwidgets support goocanvas(demo code)? ${HAVE_GOOCANVAS}" |
| 3713 | echo | 3714 | echo |
| 3714 | 3715 | ||
| 3715 | if test $USE_XASSERTS = yes; then | 3716 | if test $USE_XASSERTS = yes; then |