From c09a47f790179c7a26dd1a29ca3d44fb2fb7d753 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Mon, 24 Jul 2023 12:09:37 +1200 Subject: [PATCH] Define LUA_USE_POSIX --- README.md | 5 ++--- lcallisto.h | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2a89a44..e0de56c 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,8 @@ First and foremost, Callisto tries to satisfy these requirements: - a library that works and integrates well with Lua and its standard library, and is easy to use -Currently Callisto only works on POSIX operating systems such as -Linux and the BSDs (mainly because I don't have a machine running -Windows). +Callisto only works on POSIX-compliant operating systems such as +Linux and the BSDs. There is no plan for a Windows port. ## Dependencies diff --git a/lcallisto.h b/lcallisto.h index 1c9e70e..8db2ae0 100644 --- a/lcallisto.h +++ b/lcallisto.h @@ -8,6 +8,8 @@ #include +#define LUA_USE_POSIX + #define CALLISTO_VERSION_MAJOR "0" #define CALLISTO_VERSION_MINOR "1" #define CALLISTO_VERSION_RELEASE "0"