Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 May 2015 19:08:44 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385208 - in head/lang: php5 php55 php56
Message-ID:  <201505021908.t42J8idv037014@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sbruno
Date: Sat May  2 19:08:43 2015
New Revision: 385208
URL: https://svnweb.freebsd.org/changeset/ports/385208

Log:
  Disable FPM on mips/mips64 due to lack of ASM implementations for these
  architectures.
  
  PR:	197128

Modified:
  head/lang/php5/Makefile
  head/lang/php55/Makefile
  head/lang/php56/Makefile

Modified: head/lang/php5/Makefile
==============================================================================
--- head/lang/php5/Makefile	Sat May  2 19:04:09 2015	(r385207)
+++ head/lang/php5/Makefile	Sat May  2 19:08:43 2015	(r385208)
@@ -39,6 +39,9 @@ USE_GNOME=	libxml2
 
 OPTIONS_DEFINE+=CLI CGI FPM EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS
 OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR
+# Bug 197128:  No ASM code for MIPS/MIPS64, disable FPM
+OPTIONS_EXCLUDE_mips=FPM
+OPTIONS_EXCLUDE_mips64=FPM
 OPTIONS_SUB=	yes
 
 CLI_DESC=	Build CLI version

Modified: head/lang/php55/Makefile
==============================================================================
--- head/lang/php55/Makefile	Sat May  2 19:04:09 2015	(r385207)
+++ head/lang/php55/Makefile	Sat May  2 19:08:43 2015	(r385208)
@@ -39,6 +39,9 @@ USE_GNOME=	libxml2
 
 OPTIONS_DEFINE+=CLI CGI FPM EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS
 OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR
+# Bug 197128:  No ASM code for MIPS/MIPS64, disable FPM
+OPTIONS_EXCLUDE_mips=FPM
+OPTIONS_EXCLUDE_mips64=FPM
 OPTIONS_SUB=	yes
 
 CLI_DESC=	Build CLI version

Modified: head/lang/php56/Makefile
==============================================================================
--- head/lang/php56/Makefile	Sat May  2 19:04:09 2015	(r385207)
+++ head/lang/php56/Makefile	Sat May  2 19:08:43 2015	(r385208)
@@ -39,6 +39,9 @@ USE_GNOME=	libxml2
 
 OPTIONS_DEFINE+=CLI CGI FPM EMBED PHPDBG DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS
 OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR
+# Bug 197128:  No ASM code for MIPS/MIPS64, disable FPM
+OPTIONS_EXCLUDE_mips=FPM
+OPTIONS_EXCLUDE_mips64=FPM
 OPTIONS_SUB=	yes
 
 CLI_DESC=	Build CLI version



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