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;