mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Support for OpenBSD
- use fseeko and ftello like FreeBSD in tinyxml2 - use current directory as basePath if NULL (OpenBSD doesn't actually support this feature it is disabled via a patch in their ports)
This commit is contained in:
2
third_party/tinyxml2/tinyxml2.cpp
vendored
2
third_party/tinyxml2/tinyxml2.cpp
vendored
@@ -103,7 +103,7 @@ distribution.
|
||||
#if defined(_WIN64)
|
||||
#define TIXML_FSEEK _fseeki64
|
||||
#define TIXML_FTELL _ftelli64
|
||||
#elif defined(__APPLE__) || (__FreeBSD__)
|
||||
#elif defined(__APPLE__) || (__FreeBSD__) || (__OpenBSD__)
|
||||
#define TIXML_FSEEK fseeko
|
||||
#define TIXML_FTELL ftello
|
||||
#elif defined(__unix__) && defined(__x86_64__)
|
||||
|
||||
Reference in New Issue
Block a user