mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add missing header, fixing Linux build.
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
c9a5b712f3
commit
acfffbc980
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user