summaryrefslogtreecommitdiff
path: root/lua/README.Changes
blob: 10562bc2cd895f3b40d05e69b3e55488e493bad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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