diff configure.in @ 45205:c061b7b5de47

(emacs_cv_speed_t): Add square brackets for clarity.
author Richard M. Stallman <rms@gnu.org>
date Thu, 09 May 2002 15:03:12 +0000
parents 6ff64f2aa959
children 16708fb2d951
line wrap: on
line diff
--- a/configure.in	Thu May 09 10:18:09 2002 +0000
+++ b/configure.in	Thu May 09 15:03:12 2002 +0000
@@ -1426,10 +1426,11 @@
 
 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,