diff -r 6f3688edcbf4 -r 1d95cbda404b src/fileio.cpp --- a/src/fileio.cpp Sun Jan 13 17:37:17 2008 +0000 +++ b/src/fileio.cpp Sun Jan 13 17:45:29 2008 +0000 @@ -646,7 +646,14 @@ _searchpaths[SP_PERSONAL_DIR] = strdup(tmp); #endif + +#if defined(WITH_SHARED_DIR) + snprintf(tmp, MAX_PATH, "%s", SHARED_DIR); + AppendPathSeparator(tmp, MAX_PATH); + _searchpaths[SP_SHARED_DIR] = strdup(tmp); +#else _searchpaths[SP_SHARED_DIR] = NULL; +#endif #if defined(__MORPHOS__) || defined(__AMIGA__) _searchpaths[SP_WORKING_DIR] = NULL;