about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-02-06 13:48:46 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-02-06 13:48:46 -0800
commit21a3200c6a17242fe011649db6e477c8e17945bb (patch)
tree6a78a92e328531ca379d4d93a2c1892b277147b2 /src
parent3cfb8f7812193d9e79744016e4c9aef2c3ccbdbe (diff)
downloadteliva-21a3200c6a17242fe011649db6e477c8e17945bb.tar.gz
some more dead code
Diffstat (limited to 'src')
-rw-r--r--src/luaconf.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/luaconf.h b/src/luaconf.h
index 3c7eff5..2770e53 100644
--- a/src/luaconf.h
+++ b/src/luaconf.h
@@ -595,29 +595,6 @@ extern int mkstemp(char *);
 
 
 /*
-@@ LUA_DL_* define which dynamic-library system Lua should use.
-** CHANGE here if Lua has problems choosing the appropriate
-** dynamic-library system for your platform (either Windows' DLL, Mac's
-** dyld, or Unix's dlopen). If your system is some kind of Unix, there
-** is a good chance that it has dlopen, so LUA_DL_DLOPEN will work for
-** it.  To use dlopen you also need to adapt the src/Makefile (probably
-** adding -ldl to the linker options), so Lua does not select it
-** automatically.  (When you change the makefile to add -ldl, you must
-** also add -DLUA_USE_DLOPEN.)
-** If you do not want any kind of dynamic library, undefine all these
-** options.
-** By default, _WIN32 gets LUA_DL_DLL and MAC OS X gets LUA_DL_DYLD.
-*/
-#if defined(LUA_USE_DLOPEN)
-#define LUA_DL_DLOPEN
-#endif
-
-#if defined(LUA_WIN)
-#define LUA_DL_DLL
-#endif
-
-
-/*
 @@ LUA_INTFRMLEN is the length modifier for integer conversions
 @* in 'string.format'.
 @@ LUA_INTFRM_T is the integer type correspoding to the previous length