aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-03-13 03:13:19 +0000
committerGlenn Morris2008-03-13 03:13:19 +0000
commitacfdc2b1897d3ffb479e9ed21f84f9010c12554a (patch)
tree2fe80f2ab14b1a86bdc1a800b95dc17c7c5e22f0
parentef8e4fefa88f676077a3afa18fa638cc7ae9f400 (diff)
downloademacs-acfdc2b1897d3ffb479e9ed21f84f9010c12554a.tar.gz
emacs-acfdc2b1897d3ffb479e9ed21f84f9010c12554a.zip
(AC_INIT): Fix version number.
(sync-input): Reword the option, since it's on by default.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in5
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 16eb9e778a6..d946ed3f235 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12008-03-13 Glenn Morris <rgm@gnu.org>
2
3 * configure.in (AC_INIT): Fix version number.
4 (sync-input): Reword the option, since it's on by default.
5
12008-03-11 Jan Dj$(Q)Z(Brv <jan.h.d@swipnet.se> 62008-03-11 Jan Dj$(Q)Z(Brv <jan.h.d@swipnet.se>
2 7
3 * configure.in: Add --enable-sync-input, default yes. 8 * configure.in: Add --enable-sync-input, default yes.
diff --git a/configure.in b/configure.in
index 72d4863f559..84398e1de03 100644
--- a/configure.in
+++ b/configure.in
@@ -24,7 +24,7 @@ dnl Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24dnl Boston, MA 02110-1301, USA. 24dnl Boston, MA 02110-1301, USA.
25 25
26AC_PREREQ(2.61)dnl 26AC_PREREQ(2.61)dnl
27AC_INIT(emacs, 23.0.50) 27AC_INIT(emacs, 23.0.60)
28AC_CONFIG_HEADER(src/config.h:src/config.in) 28AC_CONFIG_HEADER(src/config.h:src/config.in)
29AC_CONFIG_SRCDIR(src/lisp.h) 29AC_CONFIG_SRCDIR(src/lisp.h)
30 30
@@ -173,8 +173,9 @@ AC_ARG_ENABLE(font-backend,
173 USE_FONT_BACKEND=$enableval, 173 USE_FONT_BACKEND=$enableval,
174 USE_FONT_BACKEND=yes) 174 USE_FONT_BACKEND=yes)
175 175
176## Enabled by default.
176AC_ARG_ENABLE(sync-input, 177AC_ARG_ENABLE(sync-input,
177[AS_HELP_STRING([--enable-sync-input], [compile code with sync-input])], 178[AS_HELP_STRING([--disable-sync-input], [don't compile code with sync-input])],
178 USE_SYNC_INPUT=$enableval, 179 USE_SYNC_INPUT=$enableval,
179 USE_SYNC_INPUT=yes) 180 USE_SYNC_INPUT=yes)
180 181