Received: by mail.netbsd.org (Postfix, from userid 605) id 839F784F90; Sun, 29 Jul 2018 11:36:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DD79584EC7 for ; Sun, 29 Jul 2018 11:36:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hGeVQdWw-MEF for ; Sun, 29 Jul 2018 11:36:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0284184DAF for ; Sun, 29 Jul 2018 11:36:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EFEE3FBEC; Sun, 29 Jul 2018 11:36:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1532864166126270" MIME-Version: 1.0 Date: Sun, 29 Jul 2018 11:36:06 +0000 From: "Min Sik Kim" Subject: CVS commit: pkgsrc/devel/lua-lrexlib To: pkgsrc-changes@NetBSD.org Reply-To: minskim@netbsd.org X-Mailer: log_accum Message-Id: <20180729113606.EFEE3FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1532864166126270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: minskim Date: Sun Jul 29 11:36:06 UTC 2018 Modified Files: pkgsrc/devel/lua-lrexlib: Makefile.common Log Message: Make lua-lrexlib build with Lua 5.3 Without this CFLAGS option, the deprecated luaL_optint() in the module is not replaced with luaL_optinteger(). To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/lua-lrexlib/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1532864166126270 Content-Disposition: inline Content-Length: 934 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/lua-lrexlib/Makefile.common diff -u pkgsrc/devel/lua-lrexlib/Makefile.common:1.4 pkgsrc/devel/lua-lrexlib/Makefile.common:1.5 --- pkgsrc/devel/lua-lrexlib/Makefile.common:1.4 Mon Jan 27 18:41:12 2014 +++ pkgsrc/devel/lua-lrexlib/Makefile.common Sun Jul 29 11:36:06 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.4 2014/01/27 18:41:12 wiz Exp $ +# $NetBSD: Makefile.common,v 1.5 2018/07/29 11:36:06 minskim Exp $ # used by devel/lua-lrexlib-posix/Makefile # used by devel/lua-lrexlib-pcre/Makefile # used by devel/lua-lrexlib-onig/Makefile @@ -29,6 +29,7 @@ PATCHDIR= ${.CURDIR}/../../devel/lua-lr DISTINFO_FILE= ${.CURDIR}/../../devel/lua-lrexlib/distinfo DESCR_SRC= ${.CURDIR}/../../devel/lua-lrexlib/DESCR.common +CFLAGS+= -DLUA_COMPAT_APIINTCASTS MAKE_FLAGS+= LIBS=${LIBS:Q} MAKE_FLAGS+= LIBTOOL=${LIBTOOL:Q} MAKE_FLAGS+= MODULES_DIR=${PREFIX}/${LUA_CDIR} --_----------=_1532864166126270--