diff options
author | Sean Bruno <sbruno@FreeBSD.org> | 2015-05-02 19:08:43 +0000 |
---|---|---|
committer | Sean Bruno <sbruno@FreeBSD.org> | 2015-05-02 19:08:43 +0000 |
commit | 68da98f94a45b1ee19f49bdfe0244af33a0dc4c6 (patch) | |
tree | 9ba9546d28b1bda46cbec3fd9bf8b66c46b257a0 /lang/php5 | |
parent | - Update to 9.7.92 (diff) |
Disable FPM on mips/mips64 due to lack of ASM implementations for these
architectures.
PR: 197128
Notes
Notes:
svn path=/head/; revision=385208
Diffstat (limited to 'lang/php5')
-rw-r--r-- | lang/php5/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lang/php5/Makefile b/lang/php5/Makefile index e46098b9eebc..bad2972a3f95 100644 --- a/lang/php5/Makefile +++ b/lang/php5/Makefile @@ -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 |