|
I would like to switch from 5.2 to 5.3.
However, if incompatibilities arise then a switch back to 5.2 should be easy. Something like LUA_VERSION=5.3 instead of LUA_VERSION=5.2 in the .bashrc file.
My question: if I do "make install" in the 5.3 codebase is this still doable? Or will there be confusion between the two versions, making a simple switch in this manner undoable?
By the way, in the .bashrc-file I have configured lua as follows:LUA_VERSION=5.2export LUA_VERSIONLUA_DIR=/usr/localexport LUA_DIRLUA_INCL=$LUA_DIR/includeexport LUA_INCLLUA_SHAREDIR=$LUA_DIR/share/lua/$LUA_VERSIONexport LUA_SHAREDIRLUA_LIBDIR=$LUA_DIR/lib/lua/$LUA_VERSIONexport LUA_LIBDIRLUA_PATH="./?.lua;./?/?.lua;$LUA_SHAREDIR/?.lua;$LUA_SHAREDIR/?/?.lua"export LUA_PATHLUA_CPATH="./?.so;./?/?.so;$LUA_LIBDIR/?.so;$LUA_LIBDIR/?/?.so"export LUA_CPATH
Hans van der Meer