-#ifdef __UNIX_LIKE__
- // set the program installation directory which is /usr/local by default
- //
- // under some systems (currently only Linux) the program directory can be
- // determined automatically but for portable programs you should always set
- // it explicitely
- static void SetInstallPrefix(const wxString& prefix);
-
- // get the program installation prefix
- //
- // if the prefix had been previously by SetInstallPrefix, returns that
- // value, otherwise tries to determine it automatically (Linux only right
- // now) and returns /usr/local if it failed
- static wxString GetInstallPrefix();
-#endif // __UNIX_LIKE__