emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/configure,v


From: Jan Djärv
Subject: [Emacs-diffs] Changes to emacs/configure,v
Date: Tue, 11 Mar 2008 08:14:19 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Jan Djärv <jhd>        08/03/11 08:14:18

Index: configure
===================================================================
RCS file: /cvsroot/emacs/emacs/configure,v
retrieving revision 1.259
retrieving revision 1.260
diff -u -b -r1.259 -r1.260
--- configure   5 Mar 2008 20:03:20 -0000       1.259
+++ configure   11 Mar 2008 08:14:18 -0000      1.260
@@ -1333,6 +1333,7 @@
                           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 @@
 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 @@
 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*)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]