From 98040bfcfb05bfc2a60454bab16a15a5d0d9edec Mon Sep 17 00:00:00 2001 From: Nickolas Lloyd Date: Fri, 23 Dec 2016 00:07:30 -0500 Subject: [PATCH] ; * configure.ac: Default $with_libjit to no, and echo status of JIT support. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 9d1d234c234..5a695c8abc1 100644 --- a/configure.ac +++ b/configure.ac @@ -356,7 +356,7 @@ OPTION_DEFAULT_ON([gnutls],[don't use -lgnutls for SSL/TLS support]) OPTION_DEFAULT_ON([zlib],[don't compile with zlib decompression support]) OPTION_DEFAULT_OFF([modules],[compile with dynamic modules support]) OPTION_DEFAULT_ON([threads],[don't compile with elisp threading support]) -OPTION_DEFAULT_ON([libjit],[compile with emacs lisp jit support]) +OPTION_DEFAULT_OFF([libjit],[compile with emacs lisp jit support]) AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB], [use a file notification library (LIB one of: yes, inotify, kqueue, gfile, w32, no)])], @@ -3420,7 +3420,6 @@ AC_SUBST(LIBZ) HAVE_LIBJIT=no LIBJIT= if test "${with_libjit}" != "no"; then - OLIBS=$LIBS LIBJIT_REQUIRED=0.0.1 LIBJIT_MODULES="libjit >= $LIBJIT_REQUIRED" EMACS_CHECK_MODULES([LIBJIT], [$LIBJIT_MODULES]) @@ -5345,6 +5344,7 @@ AS_ECHO([" Does Emacs use -lXaw3d? ${HAVE_XAW3D Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS} Does Emacs support Xwidgets (requires gtk3)? ${HAVE_XWIDGETS} Does Emacs have threading support in lisp? ${threads_enabled} + Does Emacs have lisp JIT support? ${HAVE_LIBJIT} "]) if test -n "${EMACSDATA}"; then -- 2.39.5