Mercurial > emacs
comparison configure @ 92738:8f8eec60028b
Add --enable-sync-input, default yes.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Tue, 11 Mar 2008 08:14:18 +0000 |
parents | b104e440c950 |
children | 4a2fb96d5195 |
comparison
equal
deleted
inserted
replaced
92737:8b55b3cdebda | 92738:8f8eec60028b |
---|---|
1331 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] | 1331 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] |
1332 --enable-carbon-app[=DIR] | 1332 --enable-carbon-app[=DIR] |
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 |
1339 sometimes confusing) to the casual installer | 1340 sometimes confusing) to the casual installer |
1340 --enable-locallisppath=PATH | 1341 --enable-locallisppath=PATH |
2131 # Check whether --enable-font-backend was given. | 2132 # Check whether --enable-font-backend was given. |
2132 if test "${enable_font_backend+set}" = set; then | 2133 if test "${enable_font_backend+set}" = set; then |
2133 enableval=$enable_font_backend; USE_FONT_BACKEND=$enableval | 2134 enableval=$enable_font_backend; USE_FONT_BACKEND=$enableval |
2134 else | 2135 else |
2135 USE_FONT_BACKEND=yes | 2136 USE_FONT_BACKEND=yes |
2137 fi | |
2138 | |
2139 | |
2140 # Check whether --enable-sync-input was given. | |
2141 if test "${enable_sync_input+set}" = set; then | |
2142 enableval=$enable_sync_input; USE_SYNC_INPUT=$enableval | |
2143 else | |
2144 USE_SYNC_INPUT=yes | |
2136 fi | 2145 fi |
2137 | 2146 |
2138 | 2147 |
2139 # Check whether --enable-asserts was given. | 2148 # Check whether --enable-asserts was given. |
2140 if test "${enable_asserts+set}" = set; then | 2149 if test "${enable_asserts+set}" = set; then |
23898 echo | 23907 echo |
23899 | 23908 |
23900 if test $USE_XASSERTS = yes; then | 23909 if 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 | 23912 fi |
23904 fi | 23913 |
23914 if test $USE_SYNC_INPUT = yes; then | |
23915 echo " Compiling with sync input." | |
23916 CPPFLAGS="$CPPFLAGS -DSYNC_INPUT=1" | |
23917 fi | |
23918 | |
23919 echo | |
23905 | 23920 |
23906 if test "$USE_X_TOOLKIT" = GTK; then | 23921 if test "$USE_X_TOOLKIT" = GTK; then |
23907 case "$canonical" in | 23922 case "$canonical" in |
23908 *cygwin*) | 23923 *cygwin*) |
23909 echo "There are known problems with Emacs and Gtk+ on cygwin, so you | 23924 echo "There are known problems with Emacs and Gtk+ on cygwin, so you |