From cad14976c23ebff5a4d57d3e291ad833426513eb Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 22 Aug 2012 07:38:29 +0000
Subject: [PATCH] fix compile w/o post

---
 Common/OpenFile.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Common/OpenFile.cpp b/Common/OpenFile.cpp
index 1e32488c97..b7054f2064 100644
--- a/Common/OpenFile.cpp
+++ b/Common/OpenFile.cpp
@@ -440,6 +440,7 @@ int MergeFile(const std::string &fileName, bool warnIfMissing)
 int MergePostProcessingFile(const std::string &fileName, bool showLastStep,
                             bool hideNewViews, bool warnIfMissing)
 {
+#if defined(HAVE_POST)
   // check if there is a mesh in the file
   FILE *fp = fopen(fileName.c_str(), "rb");
   if(!fp){
@@ -510,6 +511,9 @@ int MergePostProcessingFile(const std::string &fileName, bool showLastStep,
   }
 
   return ret;
+#else
+  return 0;
+#endif
 }
 
 void ClearProject()
-- 
GitLab