Blame SOURCES/lua-5.3.0-configure-compat-module.patch

1266ef
diff -up lua-5.2.2/configure.ac.compat-module lua-5.2.2/configure.ac
1266ef
--- lua-5.2.2/configure.ac.compat-module	2013-05-10 10:16:05.344137597 -0400
1266ef
+++ lua-5.2.2/configure.ac	2013-05-10 10:16:05.357137596 -0400
1266ef
@@ -11,6 +11,20 @@ AC_PROG_CC
1266ef
 AC_PROG_LIBTOOL
1266ef
 
1266ef
 AC_ARG_WITH(
1266ef
+  [compat-module],
1266ef
+  [AC_HELP_STRING([--with-compat-module], [Enable LUA_COMPAT_MODULE functions [default=no]])],
1266ef
+  [use_compat_module=$withval],
1266ef
+  [use_compat_module=no]
1266ef
+)
1266ef
+
1266ef
+COMPAT_DEFS="#undef LUA_COMPAT_ALL"
1266ef
+if test "x$use_compat_module" == "xyes"; then
1266ef
+  COMPAT_DEFS="#define LUA_COMPAT_5_1
1266ef
+#define LUA_COMPAT_5_2"
1266ef
+fi
1266ef
+AC_SUBST(COMPAT_DEFS)
1266ef
+
1266ef
+AC_ARG_WITH(
1266ef
   [readline],
1266ef
   [AC_HELP_STRING([--with-readline], [Use readline for interpreter input [default=yes]])],
1266ef
   [use_readline=$withval],
1266ef
diff -up lua-5.2.2/src/luaconf.h.template.in.compat-module lua-5.2.2/src/luaconf.h.template.in
1266ef
--- lua-5.2.2/src/luaconf.h.template.in.compat-module	2013-05-10 10:25:42.586116963 -0400
1266ef
+++ lua-5.2.2/src/luaconf.h.template.in	2013-05-10 10:26:29.957115269 -0400
1266ef
@@ -15,6 +15,7 @@
1266ef
 @LUA_DL_DEFS@
1266ef
 @LUA_BUILD_AS_DLL_DEFS@
1266ef
 @READLINE_DEFS@
1266ef
+@COMPAT_DEFS@
1266ef
 
1266ef
 
1266ef
 /*