summaryrefslogtreecommitdiff
path: root/libs/pbd/epa.cc
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2013-07-16 18:00:49 +0100
committerJohn Emmas <johne53@tiscali.co.uk>2013-07-16 18:00:49 +0100
commit7b480eaa27d73e2e5c21c6ac785a1aa2fb3aa51a (patch)
tree997d0988cda21ea79ee9675f31b6b79e99335d46 /libs/pbd/epa.cc
parente4ab2ffbfbe12cea63e1046b37184ddf32d9ba47 (diff)
Windows (compiler specific) includes for libpbd
Diffstat (limited to 'libs/pbd/epa.cc')
-rw-r--r--libs/pbd/epa.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/pbd/epa.cc b/libs/pbd/epa.cc
index d8a3cd5a65..1a27a436a6 100644
--- a/libs/pbd/epa.cc
+++ b/libs/pbd/epa.cc
@@ -24,7 +24,12 @@
#include "pbd/epa.h"
#include "pbd/strsplit.h"
+#ifdef COMPILER_MSVC
+#define environ _environ
+_CRTIMP extern char ** _environ;
+#else
extern char** environ;
+#endif
using namespace PBD;
using namespace std;