* BugFix: Correct many include paths and build platformX11 on non-Apple Unix.

This commit is contained in:
Robert MacGregor 2021-11-14 14:45:42 -05:00
parent a24149ba3b
commit 247b12e795
7 changed files with 14 additions and 12 deletions

View file

@ -151,7 +151,7 @@ bool ResolvePathCaseInsensitive(char* pathName, S32 pathNameSize, bool requiredA
#undef Status
#endif
#include "platformX86UNIX/platformX86UNIX.h"
#include "platformPOSIX/platformPOSIX.h"
extern int x86UNIXOpen(const char *path, int oflag);
extern int x86UNIXClose(int fd);
@ -159,8 +159,6 @@ extern ssize_t x86UNIXRead(int fd, void *buf, size_t nbytes);
extern ssize_t x86UNIXWrite(int fd, const void *buf, size_t nbytes);
extern bool ResolvePathCaseInsensitive(char* pathName, S32 pathNameSize, bool requiredAbsolute);
const int MaxPath = PATH_MAX;
namespace
{
const char sTempDir[] = "/tmp/";