* configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)

This commit is contained in:
Ken Brown 2013-02-27 22:19:51 -05:00
parent 531e70eca4
commit 0e9467861c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-02-28 Ken Brown <kbrown@cornell.edu>
* configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
Simplify data_start configuration (Bug#13783).

View file

@ -1648,7 +1648,7 @@ else
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[[extern char data_start[]; char ch;]],
[[return data_start == &ch;]])],
[[return data_start < &ch;]])],
[emacs_cv_data_start=yes],
[emacs_cv_data_start=no])])
if test $emacs_cv_data_start = yes; then