Add missing header, fixing Linux build.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
Sean Stangl 2014-05-01 15:45:41 -07:00 committed by Mark Watkins
parent c9a5b712f3
commit acfffbc980

View File

@ -315,14 +315,16 @@ void MainWindow::Startup()
} }
#ifdef Q_OS_UNIX #ifdef Q_OS_UNIX
#include <stdio.h> # include <stdio.h>
#include <unistd.h> # include <unistd.h>
# include <sys/statfs.h>
#if defined(Q_OS_MAC) || defined(Q_OS_BSD4) # if defined(Q_OS_MAC) || defined(Q_OS_BSD4)
#include <sys/mount.h> # include <sys/mount.h>
#else # else
#include <mntent.h> # include <sys/statfs.h>
#endif // Q_OS_MAC/BSD # include <mntent.h>
# endif // Q_OS_MAC/BSD
#endif // Q_OS_UNIX #endif // Q_OS_UNIX
@ -352,6 +354,8 @@ QStringList getDriveList()
struct mntent *m; struct mntent *m;
struct mntent mnt; struct mntent mnt;
char strings[4096]; char strings[4096];
// NOTE: getmntent_r is a GNU extension, requiring glibc.
while ((m = getmntent_r(mtab, &mnt, strings, sizeof(strings)))) { while ((m = getmntent_r(mtab, &mnt, strings, sizeof(strings)))) {
struct statfs fs; struct statfs fs;