Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Oct 2018 22:20:52 +0000 (UTC)
From:      "Sergey A. Osokin" <osa@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482383 - head/databases/redis-devel
Message-ID:  <201810182220.w9IMKqaR061200@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: osa
Date: Thu Oct 18 22:20:51 2018
New Revision: 482383
URL: https://svnweb.freebsd.org/changeset/ports/482383

Log:
  Fix build on GCC-based architectures.
  
  PR:	231780

Modified:
  head/databases/redis-devel/Makefile

Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile	Thu Oct 18 22:15:25 2018	(r482382)
+++ head/databases/redis-devel/Makefile	Thu Oct 18 22:20:51 2018	(r482383)
@@ -97,6 +97,9 @@ post-patch:
 .if ${PORT_OPTIONS:MLUAJIT} || ${PORT_OPTIONS:MLUA}
 	@cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/
 .endif
+.if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64
+	${REINPLACE_CMD} -e '/pragma/d' ${WRKSRC}/src/lzf_d.c
+.endif
 
 post-build:
 	${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \



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