From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4A93A1396DA for ; Thu, 2 Nov 2017 06:39:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1DD5D2BC02A; Thu, 2 Nov 2017 06:39:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF6672BC02A for ; Thu, 2 Nov 2017 06:39:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CA6373416AD for ; Thu, 2 Nov 2017 06:39:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CA3D9208 for ; Thu, 2 Nov 2017 06:39:16 +0000 (UTC) From: "Vadim A. Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim A. Misbakh-Soloviov" Message-ID: <1509604709.d14c0ba6fbdbc5c5c9f7d3dc975d9ccdf8fb8f18.mva@gentoo> Subject: [gentoo-commits] proj/lua:master commit in: eclass/ X-VCS-Repository: proj/lua X-VCS-Files: eclass/lua.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim A. Misbakh-Soloviov X-VCS-Revision: d14c0ba6fbdbc5c5c9f7d3dc975d9ccdf8fb8f18 X-VCS-Branch: master Date: Thu, 2 Nov 2017 06:39:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cb750a08-72eb-4deb-bac4-9ddc2ce3abd9 X-Archives-Hash: 45a592516c4a9c5d54499293df05b4c1 commit: d14c0ba6fbdbc5c5c9f7d3dc975d9ccdf8fb8f18 Author: Vadim A. Misbakh-Soloviov mva name> AuthorDate: Thu Nov 2 06:38:29 2017 +0000 Commit: Vadim A. Misbakh-Soloviov mva name> CommitDate: Thu Nov 2 06:38:29 2017 +0000 URL: https://gitweb.gentoo.org/proj/lua.git/commit/?id=d14c0ba6 lua.eclass: add lua5.3-related integers definition to c{,xx}flags eclass/lua.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/lua.eclass b/eclass/lua.eclass index c319f91..79e80c8 100644 --- a/eclass/lua.eclass +++ b/eclass/lua.eclass @@ -480,8 +480,8 @@ _lua_setFLAGS() { LUA_LF="$(${PKG_CONFIG} --libs $(basename ${lua}))" LUA_LF="${LUA_LF//-llua /-l$(lua_get_lua) }" - CFLAGS="${GLOBAL_CFLAGS} ${LUA_CF} -fPIC -DPIC" - CXXFLAGS="${GLOBAL_CXXFLAGS} ${LUA_CF} -fPIC -DPIC" + CFLAGS="${GLOBAL_CFLAGS} ${LUA_CF} -fPIC -DPIC -DLUA_C89_NUMBERS" + CXXFLAGS="${GLOBAL_CXXFLAGS} ${LUA_CF} -fPIC -DPIC -DLUA_C89_NUMBERS" LDFLAGS="${GLOBAL_LDFLAGS} -shared -fPIC" export CC CXX LD CFLAGS CXXFLAGS LDFLAGS PKG_CONFIG LUA_LF