From owner-svn-ports-all@freebsd.org Thu Jun 25 13:12:21 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA7AB98CAB4; Thu, 25 Jun 2015 13:12:21 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DBA301AD9; Thu, 25 Jun 2015 13:12:21 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5PDCLoq072654; Thu, 25 Jun 2015 13:12:21 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5PDCLQj072648; Thu, 25 Jun 2015 13:12:21 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201506251312.t5PDCLQj072648@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Thu, 25 Jun 2015 13:12:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390568 - in head/lang: lua51 lua52 lua53 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 13:12:22 -0000 Author: emaste (src committer) Date: Thu Jun 25 13:12:20 2015 New Revision: 390568 URL: https://svnweb.freebsd.org/changeset/ports/390568 Log: lang/lua{51,52,53}: Add -fPIC for arm64 Reviewed by: andrew Approved by: bapt Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2904 Modified: head/lang/lua51/Makefile head/lang/lua52/Makefile head/lang/lua53/Makefile Modified: head/lang/lua51/Makefile ============================================================================== --- head/lang/lua51/Makefile Thu Jun 25 13:00:30 2015 (r390567) +++ head/lang/lua51/Makefile Thu Jun 25 13:12:20 2015 (r390568) @@ -52,6 +52,7 @@ LUA_SUBDIR?= lua${PKGNAMESUFFIX} LUA_INCDIR?= ${LUA_PREFIX}/include/${LUA_SUBDIR} LUA_LIBDIR?= ${LUA_PREFIX}/lib +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC CFLAGS_powerpc= -fPIC Modified: head/lang/lua52/Makefile ============================================================================== --- head/lang/lua52/Makefile Thu Jun 25 13:00:30 2015 (r390567) +++ head/lang/lua52/Makefile Thu Jun 25 13:12:20 2015 (r390568) @@ -57,6 +57,7 @@ SUB_LIST= version=${PORTVERSION} \ libdir=${LUA_LIBDIR} \ soname=lua-${LUA_VER} +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC CFLAGS_powerpc= -fPIC Modified: head/lang/lua53/Makefile ============================================================================== --- head/lang/lua53/Makefile Thu Jun 25 13:00:30 2015 (r390567) +++ head/lang/lua53/Makefile Thu Jun 25 13:12:20 2015 (r390568) @@ -57,6 +57,7 @@ SUB_LIST= version=${PORTVERSION} \ libdir=${LUA_LIBDIR} \ soname=lua-${LUA_VER} +CFLAGS_aarch64= -fPIC CFLAGS_amd64= -fPIC CFLAGS_powerpc= -fPIC