diff options
author | alnsn <alnsn@pkgsrc.org> | 2015-12-13 18:19:05 +0000 |
---|---|---|
committer | alnsn <alnsn@pkgsrc.org> | 2015-12-13 18:19:05 +0000 |
commit | 7710895bd0a3596ecdc92acb312ed5c170e14ff5 (patch) | |
tree | 27aff49a40605580e7373f0bdc9255b05b8e9b53 /lang | |
parent | 094e90f8ebdf1f527eca363e16a90a94fe8ffd4a (diff) | |
download | pkgsrc-7710895bd0a3596ecdc92acb312ed5c170e14ff5.tar.gz |
Link lang/LuaJIT2 with pthreads to address pkg/47587.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/LuaJIT2/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/LuaJIT2/Makefile b/lang/LuaJIT2/Makefile index 3d7b09febc6..5360fac63ba 100644 --- a/lang/LuaJIT2/Makefile +++ b/lang/LuaJIT2/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.6 2015/05/14 22:33:47 alnsn Exp $ +# $NetBSD: Makefile,v 1.7 2015/12/13 18:19:05 alnsn Exp $ # DISTNAME= LuaJIT-2.0.4 PKGNAME= ${DISTNAME:S/LuaJIT/LuaJIT2/} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://luajit.org/download/ @@ -13,4 +14,9 @@ LICENSE= mit USE_TOOLS+= gmake +# Address pkg/47587 lua not linked to pthread causes issues with modules +PTHREAD_OPTS+= native +PTHREAD_AUTO_VARS= yes + +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |