diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2014-08-30 19:50:10 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-08-30 19:50:10 -0700 |
| commit | 53d815b09fe53c749acce4c8aaf427367050f2bd (patch) | |
| tree | e62b6d62bf10b6b1924ecae9f17bd21ba9b8dadd | |
| parent | f356dedfe3abd145c8f302c9be6b5e5ed9acacfc (diff) | |
| download | emacs-53d815b09fe53c749acce4c8aaf427367050f2bd.tar.gz | |
* configure.ac (__restrict_arr): Remove; no longer used.
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | configure.ac | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog index b61def192ad..18ded9664fa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * configure.ac (MAKE): Export it, for config.status. Needed on AIX when 'configure' infers MAKE=gmake. + (__restrict_arr): Remove; no longer used. 2014-08-30 Paul Eggert <eggert@cs.ucla.edu> diff --git a/configure.ac b/configure.ac index 32a55fc46e9..596fab64a05 100644 --- a/configure.ac +++ b/configure.ac @@ -4005,15 +4005,6 @@ fi AC_TYPE_MBSTATE_T -AC_CACHE_CHECK([for C restricted array declarations], emacs_cv_c_restrict_arr, - [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[void fred (int x[__restrict]);]], [[]])], - emacs_cv_c_restrict_arr=yes, emacs_cv_c_restrict_arr=no)]) -if test "$emacs_cv_c_restrict_arr" = yes; then - AC_DEFINE(__restrict_arr, __restrict, - [Define to compiler's equivalent of C99 restrict keyword in array - declarations. Define as empty for no equivalent.]) -fi - dnl Fixme: AC_SYS_POSIX_TERMIOS should probably be used, but it's not clear dnl how the tty code is related to POSIX and/or other versions of termios. dnl The following looks like a useful start. |
