You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
1.2 KiB

Index: src/Makefile
--- src/Makefile.orig 2011-09-19 14:45:14.000000000 +0200
+++ src/Makefile 2011-12-17 12:09:21.000000000 +0100
@@ -19,10 +19,10 @@
SYSLDFLAGS=
SYSLIBS=
-MYCFLAGS=
-MYLDFLAGS=
-MYLIBS=
-MYOBJS=
+MYCFLAGS?=
+MYLDFLAGS?=
+MYLIBS?=
+MYOBJS?=
# == END OF USER SETTINGS -- NO NEED TO CHANGE ANYTHING BELOW THIS LINE =======
Index: src/luaconf.h
--- src/luaconf.h.orig 2011-12-06 17:58:36.000000000 +0100
+++ src/luaconf.h 2011-12-17 12:09:53.000000000 +0100
@@ -43,7 +43,6 @@
#if defined(LUA_USE_LINUX)
#define LUA_USE_POSIX
#define LUA_USE_DLOPEN /* needs an extra library: -ldl */
-#define LUA_USE_READLINE /* needs some extra libraries */
#define LUA_USE_STRTODHEX /* assume 'strtod' handles hexa formats */
#define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */
#define LUA_USE_LONGLONG /* assume support for long long */
@@ -52,7 +51,6 @@
#if defined(LUA_USE_MACOSX)
#define LUA_USE_POSIX
#define LUA_USE_DLOPEN /* does not need -ldl */
-#define LUA_USE_READLINE /* needs an extra library: -lreadline */
#define LUA_USE_STRTODHEX /* assume 'strtod' handles hexa formats */
#define LUA_USE_AFORMAT /* assume 'printf' handles 'aA' specifiers */
#define LUA_USE_LONGLONG /* assume support for long long */