diff options
author | Steven Barth <steven@midlink.org> | 2009-05-01 11:28:34 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-05-01 11:28:34 +0000 |
commit | 67fbe1b33c2195cc763309ba7467100f56676467 (patch) | |
tree | 9d2f649d045e0da1e2df38d4ec896251861bb3a8 /contrib/luasocket | |
parent | 78d8ad784bdc06d07e2fcac409f2052b1d13d5f3 (diff) |
Remove Luasocket - obsoleted by nixio
Remove old luasocket based LuCI Httpd - obsoleted by lucittpd
Remove lpeg - not in use
Rewrite luci-splashd using nixio
Diffstat (limited to 'contrib/luasocket')
-rw-r--r-- | contrib/luasocket/.gitignore | 1 | ||||
-rw-r--r-- | contrib/luasocket/Makefile | 32 |
2 files changed, 0 insertions, 33 deletions
diff --git a/contrib/luasocket/.gitignore b/contrib/luasocket/.gitignore deleted file mode 100644 index 1a4bd6da8..000000000 --- a/contrib/luasocket/.gitignore +++ /dev/null @@ -1 +0,0 @@ -luasocket-* diff --git a/contrib/luasocket/Makefile b/contrib/luasocket/Makefile deleted file mode 100644 index b389484f8..000000000 --- a/contrib/luasocket/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -include ../../build/config.mk -include ../../build/gccconfig.mk - -LUASOCKET_VERSION = 2.0.2 -LUASOCKET_SITE = http://dev.luci.freifunk-halle.net/sources/ -LUASOCKET_DIR = luasocket-$(LUASOCKET_VERSION) -LUASOCKET_FILE = $(LUASOCKET_DIR).tar.gz -LUASOCKET_URL = $(LUASOCKET_SITE)/$(LUASOCKET_FILE) -INSTALL_MODULEDIR = dist$(LUA_MODULEDIR) -INSTALL_LIBRARYDIR = dist$(LUA_LIBRARYDIR) - -all: compile - -include ../../build/module.mk - -$(LUASOCKET_FILE): - wget -O $@ $(LUASOCKET_URL) || rm -f $@ - -$(LUASOCKET_DIR)/.prepared: $(LUASOCKET_FILE) - rm -rf $(LUASOCKET_DIR) - tar xvfz $(LUASOCKET_FILE) - touch $@ - -compile: $(LUASOCKET_DIR)/.prepared - $(MAKE) -C $(LUASOCKET_DIR) CC=$(CC) CFLAGS="$(CFLAGS) $(LUA_CFLAGS) $(FPIC)" LDFLAGS="$(LDFLAGS) $(LUA_SHLIBS) $(SHLIB_FLAGS)" OS="$(OS)" - mkdir -p $(INSTALL_LIBRARYDIR) $(INSTALL_MODULEDIR) - $(MAKE) -C $(LUASOCKET_DIR) install INSTALL_TOP_SHARE=../../$(INSTALL_MODULEDIR) INSTALL_TOP_LIB=../../$(INSTALL_LIBRARYDIR) - -compile-all: compile - -clean: - rm -rf $(LUASOCKET_DIR) $(LUASOCKET_FILE) |