svn commit: r385208 - in head/lang: php5 php55 php56
Sean Bruno
sbruno at FreeBSD.org
Sat May 2 19:08:45 UTC 2015
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
More information about the svn-ports-all
mailing list