diff options
| author | Richard M. Stallman | 2002-05-09 15:03:30 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-05-09 15:03:30 +0000 |
| commit | a1d8dc878edd16fe25b54281f36c7fb07ee7110e (patch) | |
| tree | 1fe636e820833004b6af660d74103b0e1bfe1fc1 | |
| parent | 1a8e727bc0b369c983dbf61a48a61c47d648e3af (diff) | |
| download | emacs-a1d8dc878edd16fe25b54281f36c7fb07ee7110e.tar.gz emacs-a1d8dc878edd16fe25b54281f36c7fb07ee7110e.zip | |
(emacs_cv_speed_t): Add square brackets for clarity.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 7 |
2 files changed, 8 insertions, 3 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-05-09 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * configure.in (emacs_cv_speed_t): Add square brackets for clarity. | ||
| 4 | |||
| 1 | 2002-05-04 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2002-05-04 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * make-dist: Do not distribute lock/ directory. | 7 | * make-dist: Do not distribute lock/ directory. |
diff --git a/configure.in b/configure.in index 2d48555015a..917b66c4fe7 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -1426,10 +1426,11 @@ AC_TYPE_SIGNAL | |||
| 1426 | 1426 | ||
| 1427 | dnl Check for speed_t typedef. | 1427 | dnl Check for speed_t typedef. |
| 1428 | AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t, | 1428 | AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t, |
| 1429 | AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;], | 1429 | [AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;], |
| 1430 | emacs_cv_speed_t=yes, emacs_cv_speed_t=no)) | 1430 | emacs_cv_speed_t=yes, emacs_cv_speed_t=no)]) |
| 1431 | if test $emacs_cv_speed_t = yes; then | 1431 | if test $emacs_cv_speed_t = yes; then |
| 1432 | AC_DEFINE(HAVE_SPEED_T, 1, [Define to 1 if `speed_t' is declared by <termios.h>.]) | 1432 | AC_DEFINE(HAVE_SPEED_T, 1, |
| 1433 | [Define to 1 if `speed_t' is declared by <termios.h>.]) | ||
| 1433 | fi | 1434 | fi |
| 1434 | 1435 | ||
| 1435 | AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval, | 1436 | AC_CACHE_CHECK(for struct timeval, emacs_cv_struct_timeval, |