From ed4b681331b823eafe5a6c0e3cee3f557099a47b Mon Sep 17 00:00:00 2001 From: abd Date: Wed, 29 Oct 2008 14:52:46 +0000 Subject: [PATCH] Fix win32 compilation problem: no libgen.h header on win32 platform --- src/Batch/Batch_BatchManager_eLSF.cxx | 3 ++- src/Batch/Batch_BatchManager_ePBS.cxx | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Batch/Batch_BatchManager_eLSF.cxx b/src/Batch/Batch_BatchManager_eLSF.cxx index 6b5004044..f6d116f41 100644 --- a/src/Batch/Batch_BatchManager_eLSF.cxx +++ b/src/Batch/Batch_BatchManager_eLSF.cxx @@ -32,11 +32,12 @@ #include #include #include -#include #include "Batch_BatchManager_eLSF.hxx" #ifdef WIN32 # include # include +#else +# include #endif using namespace std; diff --git a/src/Batch/Batch_BatchManager_ePBS.cxx b/src/Batch/Batch_BatchManager_ePBS.cxx index edca9119f..7a10b1109 100644 --- a/src/Batch/Batch_BatchManager_ePBS.cxx +++ b/src/Batch/Batch_BatchManager_ePBS.cxx @@ -32,11 +32,12 @@ #include #include #include -#include #include "Batch_BatchManager_ePBS.hxx" #ifdef WIN32 # include # include +#else +# include #endif using namespace std; -- 2.39.2