compilation with DJGPP
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -74,7 +74,6 @@ bool wxGetEnv(const wxString& var, wxString *value)
|
|||||||
|
|
||||||
bool wxSetEnv(const wxString& variable, const wxChar *value)
|
bool wxSetEnv(const wxString& variable, const wxChar *value)
|
||||||
{
|
{
|
||||||
#ifdef __WATCOMC__ // has putenv()
|
|
||||||
wxString s = variable;
|
wxString s = variable;
|
||||||
if ( value )
|
if ( value )
|
||||||
s << _T('=') << value;
|
s << _T('=') << value;
|
||||||
@@ -87,10 +86,6 @@ bool wxSetEnv(const wxString& variable, const wxChar *value)
|
|||||||
strcpy(buf, p);
|
strcpy(buf, p);
|
||||||
|
|
||||||
return putenv(buf) == 0;
|
return putenv(buf) == 0;
|
||||||
#else // no way to set an env var
|
|
||||||
#error "Don't know how to implement wxSetEnv on this platform!"
|
|
||||||
return FALSE;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const wxChar* wxGetHomeDir(wxString *home)
|
const wxChar* wxGetHomeDir(wxString *home)
|
||||||
|
Reference in New Issue
Block a user