mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 21:50:47 +01:00
Fix for issue #2462 by bakkiraju@logitech.com
QNX7.0 seems to be using header <sys/statvfs.h> instead of <sys/statfs.h>
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
#if defined(POCO_OS_FAMILY_BSD)
|
#if defined(POCO_OS_FAMILY_BSD)
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/mount.h>
|
#include <sys/mount.h>
|
||||||
#elif (POCO_OS == POCO_OS_SOLARIS)
|
#elif (POCO_OS == POCO_OS_SOLARIS) || (POCO_OS == POCO_OS_QNX)
|
||||||
#include <sys/statvfs.h>
|
#include <sys/statvfs.h>
|
||||||
#else
|
#else
|
||||||
#include <sys/statfs.h>
|
#include <sys/statfs.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user