summaryrefslogtreecommitdiff
path: root/lua/README.Changes
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-09-28 15:29:25 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-09-28 15:29:25 +0200
commit1b53904e4e7d596bc50dbddb17a101cf23ee8b6d (patch)
tree5a36ad2e91efcf1121d5e2286a332196ed1299d3 /lua/README.Changes
parentc95c920088e42bd9ffef3d43134fabc28cae3c92 (diff)
downloadcrawler-1b53904e4e7d596bc50dbddb17a101cf23ee8b6d.tar.gz
crawler-1b53904e4e7d596bc50dbddb17a101cf23ee8b6d.tar.bz2
added lua for writting/configuring the crawler (instead of a hard-coded crawler.c)
Diffstat (limited to 'lua/README.Changes')
-rwxr-xr-xlua/README.Changes24
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/README.Changes b/lua/README.Changes
new file mode 100755
index 0000000..10562bc
--- /dev/null
+++ b/lua/README.Changes
@@ -0,0 +1,24 @@
+Lua 5.2.3 vanilla, unpatched
+
+The following changes where done to fit the Wolframe build process:
+
+* Makefile has been renamed to 'Makefile.orig'.
+
+* 'GNUmakefile' and 'Makefile.w32' are added for the
+ Wolframe project.
+
+* The CFLAGS should be the same as in the original Makefile.
+
+* The define switch for creating DLLs is called 'BUILD_SHARED' in
+ Wolframe. We use it in 'luaconf.h' to trigger the correct
+ DLL function markers as in:
+
+ #if defined(LUA_BUILD_AS_DLL) || defined(BUILD_SHARED) /* { */
+
+ instead of only
+
+ #if defined(LUA_BUILD_AS_DLL) /* { */
+
+Some other changes:
+
+* removed the 'doc' directory as it contains the official web page of Lua