diff options
| author | Ken Brown | 2013-02-27 22:19:51 -0500 |
|---|---|---|
| committer | Ken Brown | 2013-02-27 22:19:51 -0500 |
| commit | 0e9467861c23f830d74174dcde69a4f7d4074cac (patch) | |
| tree | fed1d5e17ba62a3b6d00dbda235858ad9588148f | |
| parent | 531e70eca4c3bcd44942a67f5ea1a8bb1cb41dad (diff) | |
| download | emacs-0e9467861c23f830d74174dcde69a4f7d4074cac.tar.gz emacs-0e9467861c23f830d74174dcde69a4f7d4074cac.zip | |
* configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-02-28 Ken Brown <kbrown@cornell.edu> | ||
| 2 | |||
| 3 | * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818) | ||
| 4 | |||
| 1 | 2013-02-25 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2013-02-25 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Simplify data_start configuration (Bug#13783). | 7 | 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 | |||
| 1648 | [AC_LINK_IFELSE( | 1648 | [AC_LINK_IFELSE( |
| 1649 | [AC_LANG_PROGRAM( | 1649 | [AC_LANG_PROGRAM( |
| 1650 | [[extern char data_start[]; char ch;]], | 1650 | [[extern char data_start[]; char ch;]], |
| 1651 | [[return data_start == &ch;]])], | 1651 | [[return data_start < &ch;]])], |
| 1652 | [emacs_cv_data_start=yes], | 1652 | [emacs_cv_data_start=yes], |
| 1653 | [emacs_cv_data_start=no])]) | 1653 | [emacs_cv_data_start=no])]) |
| 1654 | if test $emacs_cv_data_start = yes; then | 1654 | if test $emacs_cv_data_start = yes; then |