From 8c03f242ce0c73c76f0fb7d292b59b1647baf967 Mon Sep 17 00:00:00 2001 From: Gilles Depeyrot Date: Tue, 2 Oct 2001 15:57:20 +0000 Subject: [PATCH] conditional include for Darwin related to statfs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/utilsunx.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 888eb203af..fbf5377f76 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -29,7 +29,12 @@ #include "wx/stream.h" #ifdef HAVE_STATFS - #include +# ifdef __DARWIN__ +# include +# include +# else +# include +# endif #endif // HAVE_STATFS #if wxUSE_GUI -- 2.45.2