Skip to content

Commit

Permalink
further cleanup and remove old mworks checks that had been copied around
Browse files Browse the repository at this point in the history
Signed-off-by: Kimball Thurston <kdt3rd@gmail.com>
  • Loading branch information
kdt3rd committed Jul 21, 2019
1 parent b365185 commit 351ad18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OpenEXR/IlmImfFuzzTest/tmpDir.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
///////////////////////////////////////////////////////////////////////////


#if defined(_WIN32) || defined(_WIN64) || defined(__MWERKS__) || defined(__ANDROID__)
#if defined(_WIN32) || defined(_WIN64) || defined(__ANDROID__)
#define IMF_TMP_DIR ""
#else
#define IMF_TMP_DIR "/var/tmp/"
Expand Down
2 changes: 1 addition & 1 deletion OpenEXR/IlmImfTest/tmpDir.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#if defined(ANDROID) || defined(__ANDROID_API__)
#define IMF_TMP_DIR "/sdcard/"
#define IMF_PATH_SEPARATOR "/"
#elif defined(_WIN32) || defined(_WIN64) || defined(__MWERKS__)
#elif defined(_WIN32) || defined(_WIN64)
#define IMF_TMP_DIR "" // TODO: get this from GetTempPath() or env var $TEMP or $TMP
#define IMF_PATH_SEPARATOR "\\"
#include <direct.h> // for _mkdir, _rmdir
Expand Down
2 changes: 1 addition & 1 deletion OpenEXR/IlmImfUtilTest/tmpDir.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#if defined(ANDROID) || defined(__ANDROID_API__)
#define IMF_TMP_DIR "/sdcard/"
#define IMF_PATH_SEPARATOR "/"
#elif defined(_WIN32) || defined(_WIN64) || defined(__MWERKS__)
#elif defined(_WIN32) || defined(_WIN64)
#define IMF_TMP_DIR "" // TODO: get this from GetTempPath() or env var $TEMP or $TMP
#define IMF_PATH_SEPARATOR "\\"
#include <direct.h> // for _mkdir, _rmdir
Expand Down
2 changes: 1 addition & 1 deletion OpenEXR/exrmultipart/exrmultipart.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ using namespace OPENEXR_IMF_NAMESPACE;

#if defined(ANDROID) || defined(__ANDROID_API__)
#define IMF_PATH_SEPARATOR "/"
#elif defined(_WIN32) || defined(_WIN64) || defined(__MWERKS__)
#elif defined(_WIN32) || defined(_WIN64)
#define IMF_PATH_SEPARATOR "\\"
#else
#define IMF_PATH_SEPARATOR "/"
Expand Down

0 comments on commit 351ad18

Please sign in to comment.