svn commit: r518531 - in head/lang: php71 php72 php73

Piotr Kubaj pkubaj at FreeBSD.org
Wed Nov 27 19:58:32 UTC 2019


Author: pkubaj
Date: Wed Nov 27 19:58:30 2019
New Revision: 518531
URL: https://svnweb.freebsd.org/changeset/ports/518531

Log:
  lang/php7*: disable DTRACE on powerpc64
  
  php ports don't build on elfv2 with DTRACE.
  
  PR:		242113, 242114, 242116
  Approved by:	tz (maintainer), tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D22577
  Differential Revision:	https://reviews.freebsd.org/D22578
  Differential Revision:	https://reviews.freebsd.org/D22579

Modified:
  head/lang/php71/Makefile
  head/lang/php72/Makefile
  head/lang/php73/Makefile

Modified: head/lang/php71/Makefile
==============================================================================
--- head/lang/php71/Makefile	Wed Nov 27 19:56:26 2019	(r518530)
+++ head/lang/php71/Makefile	Wed Nov 27 19:58:30 2019	(r518531)
@@ -39,6 +39,7 @@ OPTIONS_DEFAULT=CLI CGI FPM EMBED MYSQLND LINKTHR DTRA
 OPTIONS_EXCLUDE_DragonFly=	DTRACE
 # ld(1) fails to link probes: Relocations in generic ELF (EM: 0)
 OPTIONS_EXCLUDE_aarch64=	DTRACE
+OPTIONS_EXCLUDE_powerpc64=	DTRACE
 # dt_modtext:opensolaris/ib/libdtrace/common/dt_link.c: arm not impemented
 OPTIONS_EXCLUDE_armv6=		DTRACE
 OPTIONS_EXCLUDE_armv7=		DTRACE

Modified: head/lang/php72/Makefile
==============================================================================
--- head/lang/php72/Makefile	Wed Nov 27 19:56:26 2019	(r518530)
+++ head/lang/php72/Makefile	Wed Nov 27 19:58:30 2019	(r518531)
@@ -40,6 +40,7 @@ OPTIONS_DEFAULT=CLI CGI FPM EMBED MYSQLND LINKTHR DTRA
 OPTIONS_EXCLUDE_DragonFly=	DTRACE
 # ld(1) fails to link probes: Relocations in generic ELF (EM: 0)
 OPTIONS_EXCLUDE_aarch64=	DTRACE
+OPTIONS_EXCLUDE_powerpc64=	DTRACE
 # dt_modtext:opensolaris/ib/libdtrace/common/dt_link.c: arm not impemented
 OPTIONS_EXCLUDE_armv6=		DTRACE
 OPTIONS_EXCLUDE_armv7=		DTRACE

Modified: head/lang/php73/Makefile
==============================================================================
--- head/lang/php73/Makefile	Wed Nov 27 19:56:26 2019	(r518530)
+++ head/lang/php73/Makefile	Wed Nov 27 19:58:30 2019	(r518531)
@@ -42,6 +42,7 @@ OPTIONS_EXCLUDE_DragonFly=	DTRACE
 # ld(1) fails to link probes: Relocations in generic ELF (EM: 0)
 OPTIONS_EXCLUDE_aarch64=	DTRACE
 OPTIONS_EXCLUDE_powerpc=	DTRACE
+OPTIONS_EXCLUDE_powerpc64=	DTRACE
 # dt_modtext:opensolaris/ib/libdtrace/common/dt_link.c: arm not impemented
 OPTIONS_EXCLUDE_armv6=		DTRACE
 OPTIONS_EXCLUDE_armv7=		DTRACE


More information about the svn-ports-head mailing list