aboutsummaryrefslogtreecommitdiff
path: root/lang/lua52/files
Commit message (Collapse)AuthorAgeFilesLines
* [PowerPC64LE] Fix Lua 5.2 runtime issueBrandon Bergren2020-09-091-0/+19
| | | | | | | | | | | | | | | | | | | | | Lua 5.2 (but not earlier or later versions) has a powerpc platform detection check. This check was not using the preferred define `__powerpc__` so fails to trigger on gcc. It also assumes that all of powerpc is big-endian. Check a more universal preprocessor define, and add support for the upcoming FreeBSD PowerPC64LE. Submitted by: Daniel Kolesa <daniel@octaforge.org> Reviewed by: luporl Approved by: portmgr (blanket: runtime fix) Differential Revision: https://reviews.freebsd.org/D26234 Notes: svn path=/head/; revision=548161
* Add missing lua.pc files (missed in previous commits)Baptiste Daroussin2014-01-101-0/+10
| | | | | | | | | | 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
* Update to 5.2.3Baptiste Daroussin2013-12-151-44/+0
| | | | | | | | | | Pass maintainership to lua@ Lots of cleanup in the Makefile Reduce patching Support stage Notes: svn path=/head/; revision=336503
* Add new port lang/lua52.Matthias Andree2013-01-053-0/+112
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