]> git.saurik.com Git - wxWidgets.git/commitdiff
Create work-around for wxGetEnvMap on OpenVMS
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Mon, 1 Nov 2010 09:48:56 +0000 (09:48 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Mon, 1 Nov 2010 09:48:56 +0000 (09:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/utilscmn.cpp

index 48e1549e7e1d0a0d0de2564f068cdb19b3b87ff1..3dca6a7abfab7edc9bb49e228697461f673ab24b 100644 (file)
@@ -557,6 +557,10 @@ bool wxGetEnvMap(wxEnvVariableHashMap *map)
 
 #if defined(__VISUALC__)
     wxChar **env = _tenviron;
 
 #if defined(__VISUALC__)
     wxChar **env = _tenviron;
+#elif defined(__VMS)
+   // Now this routine wil give false for OpenVMS
+   // TODO : should we do something with logicals?
+    char **env;
 #elif defined(__WXOSX__)
     // Under Mac shared libraries don't have access to the global environ
     // variable so use this Mac-specific function instead as advised by
 #elif defined(__WXOSX__)
     // Under Mac shared libraries don't have access to the global environ
     // variable so use this Mac-specific function instead as advised by