svn commit: r510712 - head/converters/lua-iconv

Piotr Kubaj pkubaj at FreeBSD.org
Sun Sep 1 17:45:54 UTC 2019


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:


More information about the svn-ports-head mailing list