Added #ifdef _OPENMP, to compile without OpenMP (singlethread)

Patched creation of Directory RawTherapeeAlpha
This commit is contained in:
ffsup2
2010-05-31 00:31:07 +02:00
parent 2e910a1a48
commit de22e77a4b
11 changed files with 78 additions and 15 deletions

View File

@@ -139,7 +139,9 @@ int Options::readFromFile (Glib::ustring fname) {
rtengine::SafeKeyFile keyFile;
try {
try {
if( !Glib::file_test(fname,Glib::FILE_TEST_EXISTS))
return 1;
if (!keyFile.load_from_file (fname))
return 1;
}