aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Key2011-04-26 21:17:44 -0500
committerBen Key2011-04-26 21:17:44 -0500
commit40697cd9ed9e6ee943c81f18f40ead453bb79b1e (patch)
tree2416020db1b7d458ef48af464fd9e15219882d37
parentb6f5355a9e65892e4af245fbd9789cd9a9a5ed6b (diff)
downloademacs-40697cd9ed9e6ee943c81f18f40ead453bb79b1e.tar.gz
emacs-40697cd9ed9e6ee943c81f18f40ead453bb79b1e.zip
Fixed a bug that caused configure with --enable-checking=stringoverrun to have no effect.
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f67a5bf0b55..a561f8efeec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12011-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
12011-04-26 Paul Eggert <eggert@cs.ucla.edu> 62011-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.])
296fi 296fi
297if test x$ac_gc_check_stringoverrun != x ; then 297if 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.])
300fi 300fi