diff options
| author | Glenn Morris | 2008-03-13 03:13:19 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-03-13 03:13:19 +0000 |
| commit | acfdc2b1897d3ffb479e9ed21f84f9010c12554a (patch) | |
| tree | 2fe80f2ab14b1a86bdc1a800b95dc17c7c5e22f0 | |
| parent | ef8e4fefa88f676077a3afa18fa638cc7ae9f400 (diff) | |
| download | emacs-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-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 5 |
2 files changed, 8 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-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 | |||
| 1 | 2008-03-11 Jan Dj$(Q)Z(Brv <jan.h.d@swipnet.se> | 6 | 2008-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, | |||
| 24 | dnl Boston, MA 02110-1301, USA. | 24 | dnl Boston, MA 02110-1301, USA. |
| 25 | 25 | ||
| 26 | AC_PREREQ(2.61)dnl | 26 | AC_PREREQ(2.61)dnl |
| 27 | AC_INIT(emacs, 23.0.50) | 27 | AC_INIT(emacs, 23.0.60) |
| 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) | 28 | AC_CONFIG_HEADER(src/config.h:src/config.in) |
| 29 | AC_CONFIG_SRCDIR(src/lisp.h) | 29 | AC_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. | ||
| 176 | AC_ARG_ENABLE(sync-input, | 177 | AC_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 | ||