ref: 5a7aabb5ac667ad972b8c696f88ea2a8622db295
parent: c97272f4042b1fd18e6fa9769ba2bba7d76fb07e
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Fri Jan 24 23:42:30 EST 2025
trivial mac os x 10.x port
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
Tested on: 9front/arm64, OpenBSD/386, NetBSD/sparc64, Alpine/amd64, Android/arm64.
-Also runs on: MacOS 4.x-9.x, DOS.
+Also runs on: MacOS 4.x-10.x, DOS.
Some of the changes from the original include:
--- a/posix/platform.h
+++ b/posix/platform.h
@@ -3,7 +3,11 @@
#define _XOPEN_SOURCE 700
#include <assert.h>
#include <ctype.h>
+#if defined(__APPLE__)
+#include <machine/endian.h>
+#else
#include <endian.h>
+#endif
#include <errno.h>
#include <fcntl.h>
#include <float.h>
@@ -39,6 +43,8 @@
#define __os_name__ "netbsd"
#elif defined(__DragonFly__)
#define __os_name__ "dragonflybsd"
+#elif defined(__APPLE__)
+#define __os_name__ "macosx"
#else
#define __os_name__ "unknown"
#endif
@@ -59,10 +65,20 @@
#define PATHLISTSEPSTRING ":"
#define ISPATHSEP(c) ((c) == '/')
-#ifndef BYTE_ORDER
+#if !defined(BYTE_ORDER)
+#if !defined(__BYTE_ORDER)
+#define LITTLE_ENDIAN 1234
+#define BIG_ENDIAN 4321
+#if defined(__LITTLE_ENDIAN__)
+#define BYTE_ORDER LITTLE_ENDIAN
+#else
+#define BYTE_ORDER BIG_ENDIAN
+#endif
+#else
#define LITTLE_ENDIAN __LITTLE_ENDIAN
#define BIG_ENDIAN __BIG_ENDIAN
#define BYTE_ORDER __BYTE_ORDER
+#endif
#endif
#if !defined(INITIAL_HEAP_SIZE)