aboutsummaryrefslogtreecommitdiffstats
path: root/main/lua-stringy/link-to-correct-lua-version.patch
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2014-07-11 19:22:25 +0300
committerKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2014-07-11 19:22:38 +0300
commite399a900bdb481ae28d748300054e1fbfdccd696 (patch)
tree2650fb4e2d04af553243cf4006299dd392836ee9 /main/lua-stringy/link-to-correct-lua-version.patch
parent1e8c0ea6e40b1f9f2c6ed25097edf97224892fa3 (diff)
downloadaports-e399a900bdb481ae28d748300054e1fbfdccd696.tar.bz2
aports-e399a900bdb481ae28d748300054e1fbfdccd696.tar.xz
main/lua-stringy: remove unnecessary linking
Diffstat (limited to 'main/lua-stringy/link-to-correct-lua-version.patch')
-rw-r--r--main/lua-stringy/link-to-correct-lua-version.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/main/lua-stringy/link-to-correct-lua-version.patch b/main/lua-stringy/link-to-correct-lua-version.patch
deleted file mode 100644
index e7ecc5d363..0000000000
--- a/main/lua-stringy/link-to-correct-lua-version.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- lua-projects-0.4/stringy/Makefile
-+++ lua-projects-0.4.libs/stringy/Makefile
-@@ -1,6 +1,7 @@
- LUA ?= lua5.1
- LUA_PC ?= lua5.1
- LUA_CFLAGS = $(shell pkg-config $(LUA_PC) --cflags)
-+LUA_LDFLAGS = $(shell pkg-config $(LUA_PC) --libs)
-
- CFLAGS ?= -O3 -Wall -Werror
-
-@@ -12,7 +13,7 @@
- stringy.o: fastsearch.h
-
- stringy.so: stringy.o stringy_test.lua
-- $(CC) -shared stringy.o -o $@
-+ $(CC) -shared $(LUA_LDFLAGS) stringy.o -o $@
- $(LUA) stringy_test.lua
-
- clean: