Include sys/time.h required for time_t on FreeBSD.

This commit is contained in:
John Maguire 2014-01-23 17:06:43 +01:00
parent b594f44c64
commit 2010b7d500
1 changed files with 9 additions and 3 deletions

View File

@ -27,6 +27,12 @@
#include <QRegExp>
#include <QSet>
#ifdef Q_OS_WIN
#include <time.h>
#else
#include <sys/time.h>
#endif
class Application;
class PodcastBackend;