aboutsummaryrefslogtreecommitdiffstats
path: root/src/platforms/posix/posixChildProcess.cpp
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2012-11-01 18:20:06 +0100
committerVincent Richard <[email protected]>2012-11-01 18:20:06 +0100
commitcce1c28bcecec87f34983599441ce16f7c2cf829 (patch)
tree0d94e042fce797cfe0a0cfbb11484de3fc969add /src/platforms/posix/posixChildProcess.cpp
parentFixed typo in doc. (diff)
downloadvmime-cce1c28bcecec87f34983599441ce16f7c2cf829.tar.gz
vmime-cce1c28bcecec87f34983599441ce16f7c2cf829.zip
Migrated build system to CMake. Conditional file compilation. Automatic selection of platform handler.
Diffstat (limited to 'src/platforms/posix/posixChildProcess.cpp')
-rw-r--r--src/platforms/posix/posixChildProcess.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/platforms/posix/posixChildProcess.cpp b/src/platforms/posix/posixChildProcess.cpp
index 68ef021e..a05942da 100644
--- a/src/platforms/posix/posixChildProcess.cpp
+++ b/src/platforms/posix/posixChildProcess.cpp
@@ -21,6 +21,12 @@
// the GNU General Public License cover the whole combination.
//
+#include "vmime/config.hpp"
+
+
+#if VMIME_PLATFORM_IS_POSIX && VMIME_HAVE_FILESYSTEM_FEATURES
+
+
#include "vmime/platforms/posix/posixChildProcess.hpp"
#include "vmime/platforms/posix/posixFile.hpp"
@@ -394,3 +400,6 @@ void posixChildProcess::waitForFinish()
} // platforms
} // vmime
+
+#endif // VMIME_PLATFORM_IS_POSIX && VMIME_HAVE_FILESYSTEM_FEATURES
+