Re: [libav-devel] [PATCH 2/2] pktdumper: Fix build for mingw

2012-01-25 Thread Diego Biurrun
On Wed, Jan 25, 2012 at 01:48:47PM +0200, Martin Storsjö wrote: Mingw doesn't have sleep, only _sleep (which is deprecated), Sleep (which is defined in winbase.h and not in the standard C headers) and usleep. nit: MinGW --- a/tools/pktdumper.c +++ b/tools/pktdumper.c @@ -26,6 +26,10 @@

Re: [libav-devel] [PATCH 2/2] pktdumper: Fix build for mingw

2012-01-25 Thread Janne Grunau
On 2012-01-25 13:48:47 +0200, Martin Storsjö wrote: Mingw doesn't have sleep, only _sleep (which is deprecated), Sleep (which is defined in winbase.h and not in the standard C headers) and usleep. --- tools/pktdumper.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff