$OpenBSD$ --- source/shared_lib/sources/platform/common/platform_common.cpp.orig Mon Apr 25 12:19:37 2011 +++ source/shared_lib/sources/platform/common/platform_common.cpp Mon Apr 25 12:23:17 2011 @@ -773,7 +773,7 @@ int32 getFolderTreeContentsCheckSumRecursively(const s glob_t globbuf; int res = glob(mypath.c_str(), 0, 0, &globbuf); -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#2 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -807,13 +807,13 @@ int32 getFolderTreeContentsCheckSumRecursively(const s globfree(&globbuf); // Look recursively for sub-folders -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) res = glob(mypath.c_str(), 0, 0, &globbuf); #else res = glob(mypath.c_str(), GLOB_ONLYDIR, 0, &globbuf); #endif -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#3 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -822,7 +822,7 @@ int32 getFolderTreeContentsCheckSumRecursively(const s #endif for(int i = 0; i < globbuf.gl_pathc; ++i) { -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) struct stat statStruct; // only process if dir.. int actStat = lstat( globbuf.gl_pathv[i], &statStruct); @@ -954,7 +954,7 @@ vector getFolderTreeContentsListRecursively(co } int res = glob(mypath.c_str(), globFlags, 0, &globbuf); -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#4 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -987,14 +987,14 @@ vector getFolderTreeContentsListRecursively(co globfree(&globbuf); // Look recursively for sub-folders -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) res = glob(mypath.c_str(), 0, 0, &globbuf); #else //APPLE doesn't have the GLOB_ONLYDIR definition.. globFlags |= GLOB_ONLYDIR; res = glob(mypath.c_str(), globFlags, 0, &globbuf); #endif -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#5 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -1003,7 +1003,7 @@ vector getFolderTreeContentsListRecursively(co #endif for(int i = 0; i < globbuf.gl_pathc; ++i) { -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) struct stat statStruct; // only get if dir.. int actStat = lstat( globbuf.gl_pathv[ i], &statStruct); @@ -1095,7 +1095,7 @@ vector > getFolderTreeContents int res = glob(mypath.c_str(), 0, 0, &globbuf); -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#6 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -1127,13 +1127,13 @@ vector > getFolderTreeContents globfree(&globbuf); // Look recursively for sub-folders -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) res = glob(mypath.c_str(), 0, 0, &globbuf); #else //APPLE doesn't have the GLOB_ONLYDIR definition.. res = glob(mypath.c_str(), GLOB_ONLYDIR, 0, &globbuf); #endif -#if !defined(__APPLE__) && !defined(__FreeBSD__) +#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) if(res < 0) { std::stringstream msg; msg << "#7 Couldn't scan directory '" << mypath << "': " << strerror(errno); @@ -1142,7 +1142,7 @@ vector > getFolderTreeContents #endif for(int i = 0; i < globbuf.gl_pathc; ++i) { -#if defined(__APPLE__) || defined(__FreeBSD__) +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__) struct stat statStruct; // only get if dir.. int actStat = lstat( globbuf.gl_pathv[ i], &statStruct);