summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-devtools/lua/lua/uclibc-pthread.patch13
-rw-r--r--meta-oe/recipes-devtools/lua/lua_5.3.6.bb3
2 files changed, 0 insertions, 16 deletions
diff --git a/meta-oe/recipes-devtools/lua/lua/uclibc-pthread.patch b/meta-oe/recipes-devtools/lua/lua/uclibc-pthread.patch
deleted file mode 100644
index f4cdc5d8c5..0000000000
--- a/meta-oe/recipes-devtools/lua/lua/uclibc-pthread.patch
+++ /dev/null
@@ -1,13 +0,0 @@
1Index: lua-5.1.4/src/Makefile
2===================================================================
3--- a/src/Makefile.orig 2013-10-22 22:17:19.929103523 -0400
4+++ a/src/Makefile 2013-10-22 22:18:27.992104545 -0400
5@@ -9,7 +9,7 @@
6 CC= gcc
7 CFLAGS= -O2 -Wall -DLUA_COMPAT_ALL $(SYSCFLAGS) $(MYCFLAGS)
8 LDFLAGS= $(SYSLDFLAGS) $(MYLDFLAGS)
9-LIBS= -lm $(SYSLIBS) $(MYLIBS)
10+LIBS= -lm -lpthread $(SYSLIBS) $(MYLIBS)
11
12 AR= ar rcu
13 RANLIB= ranlib
diff --git a/meta-oe/recipes-devtools/lua/lua_5.3.6.bb b/meta-oe/recipes-devtools/lua/lua_5.3.6.bb
index a18f9f0833..f830e09259 100644
--- a/meta-oe/recipes-devtools/lua/lua_5.3.6.bb
+++ b/meta-oe/recipes-devtools/lua/lua_5.3.6.bb
@@ -30,9 +30,6 @@ inherit pkgconfig binconfig ptest
30PACKAGECONFIG ??= "readline" 30PACKAGECONFIG ??= "readline"
31PACKAGECONFIG[readline] = ",,readline" 31PACKAGECONFIG[readline] = ",,readline"
32 32
33UCLIBC_PATCHES += "file://uclibc-pthread.patch"
34SRC_URI:append_libc-uclibc = " ${UCLIBC_PATCHES}"
35
36TARGET_CC_ARCH += " -fPIC ${LDFLAGS}" 33TARGET_CC_ARCH += " -fPIC ${LDFLAGS}"
37EXTRA_OEMAKE = "'CC=${CC} -fPIC' 'MYCFLAGS=${CFLAGS} -fPIC' MYLDFLAGS='${LDFLAGS}'" 34EXTRA_OEMAKE = "'CC=${CC} -fPIC' 'MYCFLAGS=${CFLAGS} -fPIC' MYLDFLAGS='${LDFLAGS}'"
38 35