(emacs_cv_speed_t): Add square brackets for clarity.

This commit is contained in:
Richard M. Stallman 2002-05-09 15:03:30 +00:00
parent 1a8e727bc0
commit a1d8dc878e
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2002-05-09 Richard M. Stallman <rms@gnu.org>
* configure.in (emacs_cv_speed_t): Add square brackets for clarity.
2002-05-04 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* make-dist: Do not distribute lock/ directory.

View file

@ -1426,10 +1426,11 @@ AC_TYPE_SIGNAL
dnl Check for speed_t typedef.
AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t,
AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;],
emacs_cv_speed_t=yes, emacs_cv_speed_t=no))
[AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;],
emacs_cv_speed_t=yes, emacs_cv_speed_t=no)])
if test $emacs_cv_speed_t = yes; then
AC_DEFINE(HAVE_SPEED_T, 1, [Define to 1 if `speed_t' is declared by <termios.h>.])
AC_DEFINE(HAVE_SPEED_T, 1,
[Define to 1 if `speed_t' is declared by <termios.h>.])
fi
AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval,