projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use lib64 for 64-bit builds on some kinds of linux and lib/64 on solaris
[wxWidgets.git]
/
src
/
os2
/
stdpaths.cpp
diff --git
a/src/os2/stdpaths.cpp
b/src/os2/stdpaths.cpp
index 86a91d3e0cc60a31dbeec98263b8d1b0bebae66b..bd715391252651d5e497925781747b1af11474dc 100644
(file)
--- a/
src/os2/stdpaths.cpp
+++ b/
src/os2/stdpaths.cpp
@@
-20,6
+20,8
@@
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
+#if wxUSE_STDPATHS
+
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif
@@
-54,7
+56,7
@@
wxString wxStandardPaths::GetInstallPrefix() const
{
wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this);
{
wxStandardPaths *self = wx_const_cast(wxStandardPaths *, this);
- self->m_prefix = _T("/usr/local");
+
self->m_prefix = _T("/usr/local");
}
return m_prefix;
}
}
return m_prefix;
}
@@
-87,3
+89,5
@@
wxString wxStandardPaths::GetPluginsDir() const
{
return wxString();
}
{
return wxString();
}
+
+#endif // wxUSE_STDPATHS