[multiple changes]

2000-07-03  Donn Terry  (donnte@microsoft.com)
        * libU77/aclocal.m4: check for 2 argument gettimeofday without
	struct timezone

2000-06-21  Zack Weinberg  <zack@wolery.cumb.org>

From-SVN: r34874
This commit is contained in:
Donn Terry 2000-07-05 19:24:53 +00:00 committed by Toon Moene
parent bfa697a954
commit a1337b40ca
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2000-07-02 Toon Moene <toon@moene.indiv.nluug.nl>
2000-07-03 Donn Terry (donnte@microsoft.com)
* libU77/aclocal.m4: check for 2 argument gettimeofday without
struct timezone
2000-07-02 Toon Moene <toon@moene.indiv.nluug.nl>
* libF77/Version.c: Bumped version number to 0.5.26.
* libI77/Version.c: Ditto.
* libU77/Version.c: Ditto.

View File

@ -54,8 +54,13 @@ main ()
],
[
struct timeval time;
#ifdef HAVE_TIMEZONE
struct timezone dummy;
gettimeofday (&time, &dummy);],
#define DUMMY &dummy
#else
#define DUMMY NULL
#endif
gettimeofday (&time, DUMMY);],
emacs_cv_gettimeofday_two_arguments=yes,
emacs_cv_gettimeofday_two_arguments=no))
if test $emacs_cv_gettimeofday_two_arguments = no; then