summaryrefslogtreecommitdiff
path: root/src/fs/physfs/virtfs.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-02 00:36:59 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-02 00:36:59 +0300
commit38846eb9dda3b1656a0b36acb2945edf7b314fa0 (patch)
treeaaf3030d5448468680e053337fd8e5070b4130cc /src/fs/physfs/virtfs.cpp
parent32061bfe63fce77accf1657a6631700c859fa541 (diff)
downloadmv-38846eb9dda3b1656a0b36acb2945edf7b314fa0.tar.gz
mv-38846eb9dda3b1656a0b36acb2945edf7b314fa0.tar.bz2
mv-38846eb9dda3b1656a0b36acb2945edf7b314fa0.tar.xz
mv-38846eb9dda3b1656a0b36acb2945edf7b314fa0.zip
Add ifdefs for prevent compilation by any scripts virtfs/physfs files if should be disabled.
Diffstat (limited to 'src/fs/physfs/virtfs.cpp')
-rw-r--r--src/fs/physfs/virtfs.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fs/physfs/virtfs.cpp b/src/fs/physfs/virtfs.cpp
index 7a1484081..d19d112a3 100644
--- a/src/fs/physfs/virtfs.cpp
+++ b/src/fs/physfs/virtfs.cpp
@@ -18,6 +18,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifdef USE_PHYSFS
+
#include "fs/virtfs.h"
#include "fs/physfs/virtfsphys.h"
@@ -205,3 +207,4 @@ namespace VirtFs
return file->funcs->eof(file);
}
} // namespace VirtFs
+#endif // USE_PHYSFS