diff options
| author | Marc G. Fournier | 1998-03-31 02:59:07 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1998-03-31 02:59:07 +0000 |
| commit | 92c6bf9775bbcee2f8da9e2c872c3a28f3eaf228 (patch) | |
| tree | ea93edfcaddab6966015e755ed4c175b3d9f0d4f /src/include/config.h.in | |
| parent | 01ecb2e3a03195c65d1ea55bfc9b4a47f632baec (diff) | |
Pointed out by: Doug Winterburn <dlw@seavme.xroads.com>
2) Add "#define gettimeofday(a,b) gettimeofday(a) to src/include/config.h
On the 88k SVR4, gettimeofday only has one argument. This is
checked for in a few other packages by configure, so there should
be some examples of the configure test out there.
Diffstat (limited to 'src/include/config.h.in')
| -rw-r--r-- | src/include/config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index c211c723483..193ff71ff78 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -71,6 +71,12 @@ /* Set to 1 if you have <dld.h> */ #undef HAVE_DLD_H +/* Set to 1 if you gettimeofday(a,b) vs gettimeofday(a) */ +#undef HAVE_GETTIMEOFDAY_2_ARGS +#ifndef HAVE_GETTIMEOFDAY_2_ARGS +# define gettimeofday(a,b) gettimeofday(a) +#endif + /* Set to 1 if you have fp_class() */ #undef HAVE_FP_CLASS |
