aboutsummaryrefslogtreecommitdiff
path: root/luaconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'luaconf.h')
-rw-r--r--luaconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/luaconf.h b/luaconf.h
index bc5fbe9f..0adc9c13 100644
--- a/luaconf.h
+++ b/luaconf.h
@@ -59,7 +59,7 @@
59 59
60 60
61/* 61/*
62** When Posix DLL ('LUA_USE_DLOPEN') is enabled, the Lua stand-alone 62** When POSIX DLL ('LUA_USE_DLOPEN') is enabled, the Lua stand-alone
63** application will try to dynamically link a 'readline' facility 63** application will try to dynamically link a 'readline' facility
64** for its REPL. In that case, LUA_READLINELIB is the name of the 64** for its REPL. In that case, LUA_READLINELIB is the name of the
65** library it will look for those facilities. If lua.c cannot open 65** library it will look for those facilities. If lua.c cannot open
@@ -76,7 +76,7 @@
76 76
77#if defined(LUA_USE_MACOSX) 77#if defined(LUA_USE_MACOSX)
78#define LUA_USE_POSIX 78#define LUA_USE_POSIX
79#define LUA_USE_DLOPEN /* MacOS does not need -ldl */ 79#define LUA_USE_DLOPEN /* macOS does not need -ldl */
80#define LUA_READLINELIB "libedit.dylib" 80#define LUA_READLINELIB "libedit.dylib"
81#endif 81#endif
82 82
@@ -88,7 +88,7 @@
88 88
89 89
90#if defined(LUA_USE_C89) && defined(LUA_USE_POSIX) 90#if defined(LUA_USE_C89) && defined(LUA_USE_POSIX)
91#error "Posix is not compatible with C89" 91#error "POSIX is not compatible with C89"
92#endif 92#endif
93 93
94 94