diff options
| author | Ben Key | 2011-04-26 21:17:44 -0500 |
|---|---|---|
| committer | Ben Key | 2011-04-26 21:17:44 -0500 |
| commit | 40697cd9ed9e6ee943c81f18f40ead453bb79b1e (patch) | |
| tree | 2416020db1b7d458ef48af464fd9e15219882d37 | |
| parent | b6f5355a9e65892e4af245fbd9789cd9a9a5ed6b (diff) | |
| download | emacs-40697cd9ed9e6ee943c81f18f40ead453bb79b1e.tar.gz emacs-40697cd9ed9e6ee943c81f18f40ead453bb79b1e.zip | |
Fixed a bug that caused configure with --enable-checking=stringoverrun to have no effect.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-04-27 Ben Key <bkey76@gmail.com> | ||
| 2 | |||
| 3 | * configure.in: Fixed a bug that caused configure with | ||
| 4 | --enable-checking=stringoverrun to have no effect. | ||
| 5 | |||
| 1 | 2011-04-26 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2011-04-26 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | * configure.in: Suppress unnecessary checks for size_t. | 8 | * configure.in: Suppress unnecessary checks for size_t. |
diff --git a/configure.in b/configure.in index 546abbe05a5..68404bf0bcd 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -294,7 +294,7 @@ if test x$ac_gc_check_stringbytes != x ; then | |||
| 294 | strings is redundantly recorded in sdata structures so that it can | 294 | strings is redundantly recorded in sdata structures so that it can |
| 295 | be compared to the sizes recorded in Lisp strings.]) | 295 | be compared to the sizes recorded in Lisp strings.]) |
| 296 | fi | 296 | fi |
| 297 | if test x$ac_gc_check_stringoverrun != x ; then | 297 | if test x$ac_gc_check_string_overrun != x ; then |
| 298 | AC_DEFINE(GC_CHECK_STRING_OVERRUN, 1, | 298 | AC_DEFINE(GC_CHECK_STRING_OVERRUN, 1, |
| 299 | [Define this to check for short string overrun.]) | 299 | [Define this to check for short string overrun.]) |
| 300 | fi | 300 | fi |