Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Sep 2019 17:45:53 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r510712 - head/converters/lua-iconv
Message-ID:  <201909011745.x81Hjr0p052120@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Sep  1 17:45:53 2019
New Revision: 510712
URL: https://svnweb.freebsd.org/changeset/ports/510712

Log:
  converters/lua-iconv: fix build on armv7 and armv6
  
  Those require -fPIC too.
  
  PR:		239623
  Reviewed by:	vanilla (maintainer timeout), linimon (mentor)
  Differential Revision:	https://reviews.freebsd.org/D21402

Modified:
  head/converters/lua-iconv/Makefile

Modified: head/converters/lua-iconv/Makefile
==============================================================================
--- head/converters/lua-iconv/Makefile	Sun Sep  1 17:35:51 2019	(r510711)
+++ head/converters/lua-iconv/Makefile	Sun Sep  1 17:45:53 2019	(r510712)
@@ -27,6 +27,8 @@ MAKE_ARGS=	LUABIN=${LUA_CMD} CFLAGS="${CFLAGS}"
 LDFLAGS+=	-shared ${ICONV_LIB} -L${LOCALBASE}/lib
 CFLAGS_aarch64=	-fPIC
 CFLAGS_amd64=	-fPIC
+CFLAGS_armv6=	-fPIC
+CFLAGS_armv7=	-fPIC
 CFLAGS_i386=	-fPIC
 
 do-install:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909011745.x81Hjr0p052120>