aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2008-03-13 03:13:19 +0000
committerGlenn Morris <[email protected]>2008-03-13 03:13:19 +0000
commitacfdc2b1897d3ffb479e9ed21f84f9010c12554a (patch)
tree2fe80f2ab14b1a86bdc1a800b95dc17c7c5e22f0 /configure.in
parentef8e4fefa88f676077a3afa18fa638cc7ae9f400 (diff)
(AC_INIT): Fix version number.
(sync-input): Reword the option, since it's on by default.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 72d4863f55..84398e1de0 100644
--- a/configure.in
+++ b/configure.in
@@ -24,7 +24,7 @@ dnl Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
dnl Boston, MA 02110-1301, USA.
AC_PREREQ(2.61)dnl
-AC_INIT(emacs, 23.0.50)
+AC_INIT(emacs, 23.0.60)
AC_CONFIG_HEADER(src/config.h:src/config.in)
AC_CONFIG_SRCDIR(src/lisp.h)
@@ -173,8 +173,9 @@ AC_ARG_ENABLE(font-backend,
USE_FONT_BACKEND=$enableval,
USE_FONT_BACKEND=yes)
+## Enabled by default.
AC_ARG_ENABLE(sync-input,
-[AS_HELP_STRING([--enable-sync-input], [compile code with sync-input])],
+[AS_HELP_STRING([--disable-sync-input], [don't compile code with sync-input])],
USE_SYNC_INPUT=$enableval,
USE_SYNC_INPUT=yes)