diff options
author | Max Horn | 2008-02-24 23:14:04 +0000 |
---|---|---|
committer | Max Horn | 2008-02-24 23:14:04 +0000 |
commit | 5c99d45d9f8d558cd1a69a89f02fe58931d69da6 (patch) | |
tree | 0a884d8985513bdf81a1e1f4f4ba6c05fa00f4b7 /backends/fs/posix | |
parent | a3f2f4b039130d0227b34ec75e7b3fef2ae21d0d (diff) | |
download | scummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.tar.gz scummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.tar.bz2 scummvm-rg350-5c99d45d9f8d558cd1a69a89f02fe58931d69da6.zip |
Don't #include the FS factory implementations in common/system.cpp; rather, rely on the build system to include them
svn-id: r30957
Diffstat (limited to 'backends/fs/posix')
-rw-r--r-- | backends/fs/posix/posix-fs-factory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/fs/posix/posix-fs-factory.cpp b/backends/fs/posix/posix-fs-factory.cpp index 13212fb51f..0a1160ff8f 100644 --- a/backends/fs/posix/posix-fs-factory.cpp +++ b/backends/fs/posix/posix-fs-factory.cpp @@ -22,6 +22,7 @@ * $Id$ */ +#if defined(UNIX) #include "backends/fs/posix/posix-fs-factory.h" #include "backends/fs/posix/posix-fs.cpp" @@ -40,3 +41,4 @@ AbstractFilesystemNode *POSIXFilesystemFactory::makeCurrentDirectoryFileNode() c AbstractFilesystemNode *POSIXFilesystemFactory::makeFileNodePath(const String &path) const { return new POSIXFilesystemNode(path, true); } +#endif |