diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2008-03-11 08:14:28 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2008-03-11 08:14:28 +0000 |
commit | ca34d75a59d42b2a9f11a2f6b754ef21005fbdfd (patch) | |
tree | 8fb3260a8e625c9cd9ae909eaf02c78c611a5f16 /configure | |
parent | 191a057dc06f06388accfc0aaa7647a734372b67 (diff) | |
download | emacs-ca34d75a59d42b2a9f11a2f6b754ef21005fbdfd.tar.gz |
Add --enable-sync-input, default yes.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configure b/configure index f2c2110faba..54830584109 100755 --- a/configure +++ b/configure @@ -1333,6 +1333,7 @@ Optional Features: specify install directory for Emacs.app on Mac OS X [DIR=/Application] --disable-font-backend don't compile font-backend support + --enable-sync-input compile code with sync-input --enable-asserts compile code with asserts enabled --enable-maintainer-mode enable make rules and dependencies not useful (and @@ -2136,6 +2137,14 @@ else fi +# Check whether --enable-sync-input was given. +if test "${enable_sync_input+set}" = set; then + enableval=$enable_sync_input; USE_SYNC_INPUT=$enableval +else + USE_SYNC_INPUT=yes +fi + + # Check whether --enable-asserts was given. if test "${enable_asserts+set}" = set; then enableval=$enable_asserts; USE_XASSERTS=$enableval @@ -23900,9 +23909,15 @@ echo if test $USE_XASSERTS = yes; then echo " Compiling with asserts turned on." CPPFLAGS="$CPPFLAGS -DXASSERTS=1" - echo fi +if test $USE_SYNC_INPUT = yes; then + echo " Compiling with sync input." + CPPFLAGS="$CPPFLAGS -DSYNC_INPUT=1" +fi + +echo + if test "$USE_X_TOOLKIT" = GTK; then case "$canonical" in *cygwin*) |