From: Gilles Depeyrot Date: Tue, 2 Oct 2001 15:57:20 +0000 (+0000) Subject: conditional include for Darwin related to statfs X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8c03f242ce0c73c76f0fb7d292b59b1647baf967 conditional include for Darwin related to statfs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11783 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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