View on GitHub

Autotoolized Lua

Autoconf, automake and libtool enabled Lua

Download this project as a .zip file Download this project as a tar.gz file

Autotoolized Lua

These patches add GNU autotools (autoconf, automake, libtool) configuration to Lua.

Usage

   ./configure --help

To see all of the options.

Current releases

Release News Readme
lua-5.3.0-autotoolize-r04.patch.bz2 NEWS Readme
lua-5.2.4-autotoolize-r03.patch.bz2 NEWS Readme
lua-5.1.5-autotoolize-r04.patch.bz2 NEWS Readme

Patch Installation

LUAV=X.Y.Z  # lua version
PR=P.Q      # patch release
tar xf lua-${LUAV}.tar.gz
bunzip2 lua-${LUAV}-autotoolize-r${PR}.patch.bz2
cd lua-${LUAV}
bash ../lua-${LUAV}-autotoolize-r${PR}.patch
patch -p0 < ../lua-${LUAV}-autotoolize-r${PR}.patch

Older Releases

Use above installation method

Release News Readme
lua-5.3.0-autotoolize-r03.patch.bz2 NEWS Readme
lua-5.3.0-autotoolize-r02.patch.bz2 botched, ignore
lua-5.3.0-autotoolize-r01.patch.bz2 NEWS Readme
lua-5.2.4-autotoolize-r02.patch.bz2 botched, ignore
lua-5.2.4-autotoolize-r01.patch.bz2 NEWS Readme
lua-5.1.5-autotoolize-r03.patch.bz2 botched, ignore
lua-5.1.5-autotoolize-r02.patch.bz2 NEWS Readme
lua-5.1.5-autotoolize-r01.patch.bz2 NEWS Readme

Use "Old" installation method described below

Old Patch Installation Method

LUAV=X.Y.Z  # lua version
PR=P        # patch release
tar xf lua-${LUAV}.tar.gz
cd lua-${LUAV}
bunzip2 -c ../lua-${LUAV}-autotoolize-r${PR}.patch.bz2 | patch -p1
chmod +x autogen.sh config.guess config.sub configure depcomp install-sh missing

Development