aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJan Djärv2008-03-11 08:14:28 +0000
committerJan Djärv2008-03-11 08:14:28 +0000
commitca34d75a59d42b2a9f11a2f6b754ef21005fbdfd (patch)
tree8fb3260a8e625c9cd9ae909eaf02c78c611a5f16 /configure
parent191a057dc06f06388accfc0aaa7647a734372b67 (diff)
downloademacs-ca34d75a59d42b2a9f11a2f6b754ef21005fbdfd.tar.gz
emacs-ca34d75a59d42b2a9f11a2f6b754ef21005fbdfd.zip
Add --enable-sync-input, default yes.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
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:
1333 specify install directory for Emacs.app on Mac OS X 1333 specify install directory for Emacs.app on Mac OS X
1334 [DIR=/Application] 1334 [DIR=/Application]
1335 --disable-font-backend don't compile font-backend support 1335 --disable-font-backend don't compile font-backend support
1336 --enable-sync-input compile code with sync-input
1336 --enable-asserts compile code with asserts enabled 1337 --enable-asserts compile code with asserts enabled
1337 --enable-maintainer-mode 1338 --enable-maintainer-mode
1338 enable make rules and dependencies not useful (and 1339 enable make rules and dependencies not useful (and
@@ -2136,6 +2137,14 @@ else
2136fi 2137fi
2137 2138
2138 2139
2140# Check whether --enable-sync-input was given.
2141if test "${enable_sync_input+set}" = set; then
2142 enableval=$enable_sync_input; USE_SYNC_INPUT=$enableval
2143else
2144 USE_SYNC_INPUT=yes
2145fi
2146
2147
2139# Check whether --enable-asserts was given. 2148# Check whether --enable-asserts was given.
2140if test "${enable_asserts+set}" = set; then 2149if test "${enable_asserts+set}" = set; then
2141 enableval=$enable_asserts; USE_XASSERTS=$enableval 2150 enableval=$enable_asserts; USE_XASSERTS=$enableval
@@ -23900,9 +23909,15 @@ echo
23900if test $USE_XASSERTS = yes; then 23909if test $USE_XASSERTS = yes; then
23901 echo " Compiling with asserts turned on." 23910 echo " Compiling with asserts turned on."
23902 CPPFLAGS="$CPPFLAGS -DXASSERTS=1" 23911 CPPFLAGS="$CPPFLAGS -DXASSERTS=1"
23903 echo
23904fi 23912fi
23905 23913
23914if test $USE_SYNC_INPUT = yes; then
23915 echo " Compiling with sync input."
23916 CPPFLAGS="$CPPFLAGS -DSYNC_INPUT=1"
23917fi
23918
23919echo
23920
23906if test "$USE_X_TOOLKIT" = GTK; then 23921if test "$USE_X_TOOLKIT" = GTK; then
23907 case "$canonical" in 23922 case "$canonical" in
23908 *cygwin*) 23923 *cygwin*)