[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:
parent
bfa697a954
commit
a1337b40ca
@ -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.
|
||||
|
7
libf2c/libU77/aclocal.m4
vendored
7
libf2c/libU77/aclocal.m4
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user