From: Richard M. Stallman Date: Thu, 2 Oct 1997 04:33:26 +0000 (+0000) Subject: (gettimeofday, one arg or two): X-Git-Tag: emacs-20.3~3046 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=92f357612e31de840812e3f4568d80144c9df0c0;p=emacs.git (gettimeofday, one arg or two): Clarify messages by avoiding double negative. --- diff --git a/configure.in b/configure.in index 33f233d27dd..b0ad775f183 100644 --- a/configure.in +++ b/configure.in @@ -1658,7 +1658,7 @@ if test $emacs_cv_localtime_cache = yes; then fi if test "x$HAVE_TIMEVAL" = xyes; then -AC_MSG_CHECKING(whether gettimeofday can't accept two arguments) +AC_MSG_CHECKING(whether gettimeofday can accept two arguments) AC_TRY_LINK([ #ifdef TIME_WITH_SYS_TIME #include @@ -1676,8 +1676,8 @@ AC_TRY_LINK([ struct timezone dummy; gettimeofday (&time, &dummy); ], - [AC_MSG_RESULT(no)], - [AC_MSG_RESULT(yes) + [AC_MSG_RESULT(yes)], + [AC_MSG_RESULT(no) AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)]) fi