diff --git a/setup.h_vms b/setup.h_vms index 932b69fee9..58af06c42d 100644 --- a/setup.h_vms +++ b/setup.h_vms @@ -371,6 +371,11 @@ */ #define wxUSE_LONGLONG 1 +/* + * Use geometry classes + */ +#define wxUSE_GEOMETRY 1 + /* * Use wxFile class */ @@ -686,6 +691,12 @@ /* Define if you have sigemptyset() */ #define HAVE_SIGEMPTYSET 1 +/* Define if you have the putenv function. */ +#define HAVE_PUTENV 1 + +/* Define if you have the setenv function. */ +#undef HAVE_SETENV + /* Define if you have shl_load() */ #undef HAVE_SHL_LOAD diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 0c2e7f37d2..a03b0596c4 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -873,7 +873,7 @@ long wxGetFreeMemory() // env vars // ---------------------------------------------------------------------------- -bool wxGetEnv(const wxString& var, wxString *value); +bool wxGetEnv(const wxString& var, wxString *value) { // wxGetenv is defined as getenv() wxChar *p = wxGetenv(var);