Added a few lua modules (lpeg, md5, cjson, copas, coxpcall, lzlib, rings, rs232, wsapi, xavante, lzmq, mobdebug), zeromq

Signed-off-by: Dirk Chang <dirk@kooiot.com>
This commit is contained in:
Dirk Chang
2015-04-27 20:34:27 +08:00
parent 426d1f12d1
commit b381751752
22 changed files with 918 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
--- lua-rings-1.3.0_org/config 2014-06-04 15:24:24.223662038 +0800
+++ lua-rings-1.3.0/config 2014-06-04 16:16:15.183594040 +0800
@@ -1,15 +1,15 @@
# Installation directories
# Default prefix
-PREFIX ?= /usr/local
+PREFIX ?= /usr
DESTDIR ?= /
# System's libraries directory (where binary libraries are installed)
-LUA_LIBDIR ?= $(PREFIX)/lib/lua/5.1
+LUA_LIBDIR ?= $(PREFIX)/lib/lua
# System's lua directory (where Lua libraries are installed)
-LUA_DIR ?= $(PREFIX)/share/lua/5.1
+LUA_DIR ?= $(PREFIX)/lib/lua
# Lua includes directory
LUA_INC ?= $(PREFIX)/include
@@ -24,6 +24,5 @@
WARN ?= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -Wpointer-arith -pedantic
INCS ?= -I$(LUA_INC)
CFLAGS ?= $(WARN) $(INCS)
-CC ?= gcc
# $Id: config,v 1.7 2007/10/29 22:51:39 carregal Exp $