svn commit: r458582 - head/databases/redis-devel

Sergey A. Osokin osa at FreeBSD.org
Tue Jan 9 23:07:35 UTC 2018


Author: osa
Date: Tue Jan  9 23:07:33 2018
New Revision: 458582
URL: https://svnweb.freebsd.org/changeset/ports/458582

Log:
  A customer reported privately it's possible to build the package with
  gcc on i386 platform, so it looks like it's a bug with clang 4 on i386.
  
  Do not bump PORTREVISION cause package for i386 never been built.
  
  Reference:	https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=216745

Modified:
  head/databases/redis-devel/Makefile

Modified: head/databases/redis-devel/Makefile
==============================================================================
--- head/databases/redis-devel/Makefile	Tue Jan  9 22:08:45 2018	(r458581)
+++ head/databases/redis-devel/Makefile	Tue Jan  9 23:07:33 2018	(r458582)
@@ -12,8 +12,6 @@ COMMENT=	Persistent key-value database with built-in n
 
 LICENSE=	BSD3CLAUSE
 
-BROKEN_i386=	undefined reference to __atomic_fetch_add_8
-
 OPTIONS_DEFINE=	TESTS TRIB
 OPTIONS_RADIO=	EXTLUA
 OPTIONS_RADIO_EXTLUA=	LUA LUAJIT
@@ -27,6 +25,7 @@ TRIB_DESC=	Install redis-trib.rb (lang/ruby req.)
 
 .if ${ARCH} == i386 && ! ${CFLAGS:M-march=*}
 # Needed for __atomic_fetch_add_8
+USES+=		gcc
 CFLAGS+=	-march=i586
 .endif
 


More information about the svn-ports-all mailing list