From a0e56daa3b863599f6fc59b26ee7a2e63f4afc1d Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Sat, 30 Sep 2006 20:48:17 +0000 Subject: [PATCH] Make the private prototype for gettimeofday() only visible if the autoconfiguration figured out we need it. The private implementation has already been protected that way. This should finally really fix bug #17884: another gettimeofday conflict under win32/cygwin git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@669 81a1dc3b-b13d-400b-aceb-764788c761c2 --- pgm.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pgm.h b/pgm.h index 882d8888..1a8813aa 100644 --- a/pgm.h +++ b/pgm.h @@ -110,6 +110,7 @@ PROGRAMMER * pgm_new(void); #if defined(WIN32NATIVE) +#include "ac_cfg.h" #include /* usleep replacements */ @@ -121,7 +122,9 @@ PROGRAMMER * pgm_new(void); */ void usleep(unsigned long us); +#if !defined(HAVE_GETTIMEOFDAY) int gettimeofday(struct timeval *tv, struct timezone *tz); +#endif /* HAVE_GETTIMEOFDAY */ #endif /* __win32native_h */