svn commit: r525756 - head/databases/memcached

Piotr Kubaj pkubaj at FreeBSD.org
Mon Feb 10 21:50:46 UTC 2020


Author: pkubaj
Date: Mon Feb 10 21:50:46 2020
New Revision: 525756
URL: https://svnweb.freebsd.org/changeset/ports/525756

Log:
  databases/memcached: fix build on powerpc64 elfv2
  
  -no-integrapted-as causes:
     1195 /tmp/conftest-4d18ad.s: Assembler messages:
     1196 /tmp/conftest-4d18ad.s:2: Error: unknown pseudo-op: `.abiversion'
  
  Disable DTRACE to avoid it.

Modified:
  head/databases/memcached/Makefile

Modified: head/databases/memcached/Makefile
==============================================================================
--- head/databases/memcached/Makefile	Mon Feb 10 21:15:47 2020	(r525755)
+++ head/databases/memcached/Makefile	Mon Feb 10 21:50:46 2020	(r525756)
@@ -45,6 +45,8 @@ OPTIONS_EXCLUDE_i386=		DTRACE
 OPTIONS_EXCLUDE_aarch64=	DTRACE
 OPTIONS_EXCLUDE_armv6=		DTRACE
 OPTIONS_EXCLUDE_armv7=		DTRACE
+# /tmp/conftest-4d18ad.s:2: Error: unknown pseudo-op: `.abiversion'
+OPTIONS_EXCLUDE_powerpc64=	DTRACE
 
 DTRACE_DESC=	Enable dtrace probes
 SASL_DESC=	Enable SASL Authentication


More information about the svn-ports-all mailing list