Macros by Category Revision History
Search:

lua

SYNOPSIS

AX_WITH_LUA
AX_LUA_VERSION (MIN-VERSION, [TOO-BIG-VERSION])
AX_LUA_HEADERS
AX_LUA_LIBS
AX_LUA_LIB_VERSION (MIN-VERSION, [TOO-BIG-VERSION])

DESCRIPTION

Detect Lua interpreter, headers and libraries, optionally enforcing a particular range of versions.

AX_WITH_LUA searches for Lua interpreter and defines LUA if found.

AX_LUA_VERSION checks that the version of Lua is at least MIN-VERSION and less than TOO-BIG-VERSION, if given.

AX_LUA_HEADERS searches for Lua headers and defines HAVE_LUA_H and HAVE_LUALIB_H if found, and defines LUA_INCLUDE to the preprocessor flags needed, if any.

AX_LUA_LIBS searches for Lua libraries and defines LUA_LIB if found.

AX_LUA_LIB_VERSION checks that the Lua libraries' version is at least MIN-VERSION, and less than TOO-BIG-VERSION, if given.

Versions are specified as three-digit integers whose first digit is the major version and last two are the minor version (the same format as LUA_VERSION_NUM in lua.h); e.g. 501 for Lua 5.1. The revision (e.g. the "3" in "5.1.3") is ignored.

The following options are added by these macros:

  --with-lua-prefix=DIR     Lua files are in DIR.
  --with-lua-suffix=ARG     Lua binaries and library files are
                            suffixed with ARG.
  --with-lua-includes=DIR   Lua include files are in DIR.
  --with-lua-libraries=DIR  Lua library files are in DIR.

SOURCE CODE

http://autoconf-archive.cryp.to/lua.m4

LICENSE

Copyright © 2009 Reuben Thomas <rrt@sc3d.org>
Copyright © 2009 Matthieu Moy <Matthieu.Moy@imag.fr>
Copyright © 2009 Tom Payne <twpayne@gmail.com>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

As a special exception, the respective Autoconf Macro's copyright owner gives unlimited permission to copy, distribute and modify the configure scripts that are the output of Autoconf when processing the Macro. You need not follow the terms of the GNU General Public License when using or distributing such scripts, even though portions of the text of the Macro appear in them. The GNU General Public License (GPL) does govern all other use of the material that constitutes the Autoconf Macro.

This special exception to the GPL applies to versions of the Autoconf Macro released by the Autoconf Archive. When you make and distribute a modified version of the Autoconf Macro, you may extend this special exception to the GPL to apply to your modified version as well.