diff options
author | Max Horn | 2011-05-05 15:38:54 +0200 |
---|---|---|
committer | Max Horn | 2011-05-25 13:23:03 +0200 |
commit | 39076ef9722529d80feff94bdff25843beb4fc13 (patch) | |
tree | a810a8492df5a0bdebedd02ee88908309ef33de0 /backends/plugins | |
parent | 6639eacb3ae7189bd18e4267d0115caa0a05edb4 (diff) | |
download | scummvm-rg350-39076ef9722529d80feff94bdff25843beb4fc13.tar.gz scummvm-rg350-39076ef9722529d80feff94bdff25843beb4fc13.tar.bz2 scummvm-rg350-39076ef9722529d80feff94bdff25843beb4fc13.zip |
BUILD: Rename UNIX #define to POSIX
Diffstat (limited to 'backends/plugins')
-rw-r--r-- | backends/plugins/posix/posix-provider.cpp | 6 | ||||
-rw-r--r-- | backends/plugins/posix/posix-provider.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/backends/plugins/posix/posix-provider.cpp b/backends/plugins/posix/posix-provider.cpp index 39ed247436..a68a792fa4 100644 --- a/backends/plugins/posix/posix-provider.cpp +++ b/backends/plugins/posix/posix-provider.cpp @@ -22,7 +22,7 @@ #include "common/scummsys.h" -#if defined(DYNAMIC_MODULES) && defined(UNIX) +#if defined(DYNAMIC_MODULES) && defined(POSIX) #include "backends/plugins/posix/posix-provider.h" #include "backends/plugins/dynamic-plugin.h" @@ -77,9 +77,9 @@ public: }; -Plugin* POSIXPluginProvider::createPlugin(const Common::FSNode &node) const { +Plugin *POSIXPluginProvider::createPlugin(const Common::FSNode &node) const { return new POSIXPlugin(node.getPath()); } -#endif // defined(DYNAMIC_MODULES) && defined(UNIX) +#endif // defined(DYNAMIC_MODULES) && defined(POSIX) diff --git a/backends/plugins/posix/posix-provider.h b/backends/plugins/posix/posix-provider.h index 7d6d6ada4d..b1186ccf3f 100644 --- a/backends/plugins/posix/posix-provider.h +++ b/backends/plugins/posix/posix-provider.h @@ -25,13 +25,13 @@ #include "base/plugins.h" -#if defined(DYNAMIC_MODULES) && defined(UNIX) +#if defined(DYNAMIC_MODULES) && defined(POSIX) class POSIXPluginProvider : public FilePluginProvider { protected: - Plugin* createPlugin(const Common::FSNode &node) const; + Plugin *createPlugin(const Common::FSNode &node) const; }; -#endif // defined(DYNAMIC_MODULES) && defined(UNIX) +#endif // defined(DYNAMIC_MODULES) && defined(POSIX) #endif |