From acfffbc980c877ac2e4b6c8c7d5788328d86f8d1 Mon Sep 17 00:00:00 2001 From: Sean Stangl Date: Thu, 1 May 2014 15:45:41 -0700 Subject: [PATCH] Add missing header, fixing Linux build. Signed-off-by: Mark Watkins --- sleepyhead/mainwindow.cpp | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 5704c955..4c7ba608 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -315,14 +315,16 @@ void MainWindow::Startup() } #ifdef Q_OS_UNIX -#include -#include +# include +# include +# include -#if defined(Q_OS_MAC) || defined(Q_OS_BSD4) -#include -#else -#include -#endif // Q_OS_MAC/BSD +# if defined(Q_OS_MAC) || defined(Q_OS_BSD4) +# include +# else +# include +# include +# endif // Q_OS_MAC/BSD #endif // Q_OS_UNIX @@ -352,6 +354,8 @@ QStringList getDriveList() struct mntent *m; struct mntent mnt; char strings[4096]; + + // NOTE: getmntent_r is a GNU extension, requiring glibc. while ((m = getmntent_r(mtab, &mnt, strings, sizeof(strings)))) { struct statfs fs;