From: Ken Brown Date: Thu, 28 Feb 2013 03:19:51 +0000 (-0500) Subject: * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818) X-Git-Tag: emacs-24.3.90~173^2~6^2~30 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0e9467861c23f830d74174dcde69a4f7d4074cac;p=emacs.git * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818) --- diff --git a/ChangeLog b/ChangeLog index 5b289f27ef1..7a2e7769eca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-02-28 Ken Brown + + * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818) + 2013-02-25 Paul Eggert Simplify data_start configuration (Bug#13783). diff --git a/configure.ac b/configure.ac index 2d843a01a0a..cf930e7dee3 100644 --- a/configure.ac +++ b/configure.ac @@ -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