aboutsummaryrefslogtreecommitdiff
path: root/src/makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow CC and LD to be overrridenfeature/compiler-overrideDiego Nehab2020-04-141-2/+2
|
* src/makefile: serial += compatE. Westbrook2019-03-101-0/+1
|
* Use static initializationDiego Nehab2019-03-091-1/+2
| | | | This helps with multi-threaded apps.
* Update Windows projects vor Visual Studio 2017Diego Nehab2019-03-011-7/+43
|
* src/makefile: remove visibility and dllexport defines in favor of in-source ↵E. Westbrook2019-02-251-27/+12
| | | | labeling
* src/makefile: support both lua/$(LUAV) and lua$(LUAV) include pathsE. Westbrook2019-02-221-12/+12
|
* src/makefile: define UNIX_HAS_SUN_LEN for FreeBSD buildsE. Westbrook2019-02-191-2/+2
|
* Update to Visual Studio 2017.Diego Nehab2018-08-221-1/+1
|
* rename unix.tcp to unix.stream, unix.udp to unix.dgramenginix2016-12-251-2/+2
|
* allow DESTDIR to be set from the environmentMike Usenko2016-11-081-1/+1
|
* unix socket: compat lua 5.1enginix2016-06-301-0/+1
|
* support datagram unix domain socketsenginix2016-06-241-0/+2
|
* Enabled overwriting of MYCF/MYLDFlAGSJonas Kunze2016-04-121-2/+4
|
* Added solaris platformJonas Kunze2016-01-151-2/+28
| | | | To compile on solaris some libs had to be linked. So far I was only able to test it on OmniOS r151006
* Merge branch 'tcp_reuseport' of https://github.com/KateAdams/luasocket into ↵Diego Nehab2015-10-051-20/+16
|\ | | | | | | KateAdams-tcp_reuseport
* | New compat.h module implements luaL_setfuncs.Diego Nehab2015-08-211-1/+4
| | | | | | | | Makes initialization code simpler everywhere.
* | Out of the box support for Lua 5.3.Diego Nehab2015-02-181-4/+4
|/
* Add MYCFLAGS and MYLDFLAGS go allow for customizationDiego Nehab2013-09-091-6/+11
|
* Add support for FreeBSD in makefileDiego Nehab2013-09-091-0/+29
| | | | Thanks to Leryan. See issue #78.
* Fix makefile and test_socket_error.luaDiego Nehab2013-06-121-1/+1
|
* Changing from 2.1-rc1 to 3.0-rc1.Diego Nehab2013-06-111-1/+1
|
* Fix unix export marker.Diego Nehab2013-06-111-0/+2
|
* Leaving if in src/ but out of build for now.Diego Nehab2013-05-301-8/+8
|
* Export global only if LUA_COMPAT_MODULE defined.Diego Nehab2013-05-291-4/+8
|
* Link only against ws2_32.lib.unknown2013-05-271-3/+3
|
* Fix Visual Studio 2012 projectsunknown2013-05-271-18/+21
|
* Check linux build.Diego Nehab2013-05-251-2/+2
|
* Add MingW support.unknown2013-05-251-36/+78
|
* Remove warnings and fix makefile for Win32.Diego Nehab2012-12-111-5/+6
|
* Fix socket_accept usage to depend on family.Diego Nehab2012-12-111-1/+1
|
* Fix HORRIBLE but in b64/qp code.Diego Nehab2012-08-011-1/+1
| | | | | | | Bug was caught by user moteus. Code was checking if arguments was nil after using luaL_Buffer code, which messes with the stack. Simple to fix, though.
* Fixed default Linux path to work with UbuntuDiego Nehab2012-08-011-2/+2
| | | | Also fixed clean target to remove serial objects
* src/makefile: Use install instead of cp and mkdir.Kim Alvefur2012-05-151-3/+3
|
* src/makefile: Move mkdir to a variableKim Alvefur2012-05-151-4/+5
|
* Improve makefile to allow overriden variablesDiego Nehab2012-05-111-10/+20
| | | | | | Before this change, it was difficult to set default directories for different platforms that would still work with different Lua versions.
* Rework makefiles to simplify setting and choosing build options.Sam Roberts2012-05-081-17/+61
| | | | | | Includes documentation for common build settings, reasonable defaults, and ability to set common build options in the environment.
* Making progress toward a releaseDiego Nehab2012-04-231-1/+1
| | | | | | | | | | Documented headers.lua Update copyright date everywhere Remove RCSID from files Move version back to 2.1 rather than 2.1.1 Fixed url package to support ipv6 hosts Changed "domain" to "family" in tcp and udp structures Implemented getfamily methods
* merged lua_typerrror.{c,h} into auxiliar.{c,h}Diego Nehab2012-04-161-8/+6
|
* Merge branch 'git-sam' into diego-sam-mwild-integrationSam Roberts2012-04-111-18/+48
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts in options.c were just due to independent small functions being close to each other. unix.c in mwild was broken, it wasn't using LUASOCKET_API. serial.c needed luaL_reg renamed, and to use LUASOCKET_API. makefile didn't respect standard DESTDIR and prefix makefile variables, and didn't allow LUAV variable to select lua version to build against. I've tested the top-level install-both target builds and installs against both lua5.1 and lua5.2, but not done further testing. Conflicts: README config gem/ltn012.tex makefile src/makefile src/options.c src/options.h src/tcp.c src/usocket.c
| * Add support for serial devices as socket streams on unix.Sam Roberts2012-04-111-1/+17
| |
| * Add all-unix and install-unix targets which include all modules supported on ↵Sam Roberts2012-04-111-0/+2
| | | | | | | | | | | | | | unix. Besides standard socket and mime modules, this includes unix domain socket support.
* | Compiles with Lua 5.1.4 and Lua 5.2.0-beta, although the makefile needs ↵Liam Devine2012-04-111-9/+19
| | | | | | | | sorting out to take maybe a version number and also the local paths need removing.
* | Fix two crashes and add -Wshadow so that this can't happen again.Paul Aurich2012-04-111-1/+1
| | | | | | | | | | The two crashes are the s/const char *// changes in tcp.c. The rest is cleanup so it will build.
* | Saving before big changes to support IPv6.Diego Nehab2011-05-251-61/+112
| |
* | Decent makefiles!Diego Nehab2009-05-271-34/+122
|/
* Couple bug fixes.Diego Nehab2007-03-121-3/+4
|
* Almost ready to release 2.0.1Diego Nehab2006-04-201-3/+4
|
* Almost ready to release.Diego Nehab2005-09-291-3/+4
|
* Final push for release...Diego Nehab2005-08-121-0/+87