| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
(otherwise they do not have the correct DT_NEEDED entry)
Approved by: lua (bapt)
Notes:
svn path=/head/; revision=340106
|
|
|
|
|
|
|
|
|
|
| |
Rework the makefile to use jmmv method from PR which is cleaner than my initial attempt
PR: ports/180786
Submitted by: jmmv
Notes:
svn path=/head/; revision=339329
|
|
|
|
|
|
|
|
| |
PR: ports/180786
Submitted by: jmmv
Notes:
svn path=/head/; revision=339320
|
|
|
|
|
|
|
|
|
|
| |
Pass maintainership to lua@
Lots of cleanup in the Makefile
Reduce patching
Support stage
Notes:
svn path=/head/; revision=336503
|
|
|
|
| |
Notes:
svn path=/head/; revision=334290
|
|
|
|
|
|
|
| |
lang)
Notes:
svn path=/head/; revision=327741
|
|
|
|
|
|
|
| |
Approved by: portmgr (bdrewery)
Notes:
svn path=/head/; revision=324744
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
use pthreads.
Bump PORTREVISION to pull this in.
PR: ports/181052
Submitted by: Vitaly Magerya <vmagerya@gmail.com>
Approved by: mandree@ on behalf of lua@
Notes:
svn path=/head/; revision=324286
|
|
|
|
|
|
|
|
|
|
|
| |
According to Luiz Henrique de Figueiredo,
"Lua 5.2.2 fixes all bugs listed in http://www.lua.org/bugs.html#5.2.1 .
Lua 5.2.2 also fixes several other minors glitches and includes
a revised reference manual."
Notes:
svn path=/head/; revision=315560
|
|
|
|
| |
Notes:
svn path=/head/; revision=310003
|
|
Lua is a programming language originally designed for extending applications,
but also frequently used as a general-purpose, stand-alone language. Lua
combines simple procedural syntax (similar to Pascal) with powerful data
description constructs based on associative arrays and extensible semantics.
Lua is dynamically typed, interpreted from bytecodes, and has automatic memory
management with garbage collection, making it ideal for configuration,
scripting, and rapid prototyping.
A fundamental concept in the design of Lua is to provide meta-mechanisms for
implementing features, instead of providing a host of features directly in
the language. For example, although Lua is not a pure object-oriented
language, it does provide meta-mechanisms for implementing classes and
inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the
language small, while allowing the semantics to be extended in unconventional
ways. Extensible semantics is a distinguishing feature of Lua.
Lua is implemented as a small library of C functions, written in ANSI C, and
compiles unmodified in all known platforms. The implementation goals are
simplicity, efficiency, portability, and low embedding cost.
WWW: http://www.lua.org/
PR: ports/174437
Submitted by: Green Dog <fiziologus@gmail.com>
Notes:
svn path=/head/; revision=309973
|