From: Eli Zaretskii Date: Tue, 7 May 2002 17:12:15 +0000 (+0000) Subject: Fix the test for emacs_cv_speed_t. X-Git-Tag: emacs-pretest-21.2.91~282 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b28e5dac2be14d5d683718a2655834ace7a1d5a;p=emacs.git Fix the test for emacs_cv_speed_t. --- diff --git a/configure.in b/configure.in index 38dd7b863d7..9dabbc2a0c7 100644 --- a/configure.in +++ b/configure.in @@ -1362,7 +1362,7 @@ AC_TYPE_SIGNAL dnl Check for speed_t typedef. AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t, AC_TRY_COMPILE([#include ], [speed_t x = 1;], - emacs_cv_speed_t=yes)) + emacs_cv_speed_t=yes, emacs_cv_speed_t=no)) if test $emacs_cv_speed_t = yes; then AC_DEFINE(HAVE_SPEED_T) fi