diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-12-29 13:26:29 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-12-29 13:27:20 +0100 |
commit | 4629d26755aa06344fb8f515fb0202776e70c429 (patch) | |
tree | a8ca89aa49cca5f62ee5f233045f35ea86ce144d /gnu/packages/php.scm | |
parent | 8e7dd71c19614404a333b433e4c5a13933d71ea1 (diff) | |
download | guix-4629d26755aa06344fb8f515fb0202776e70c429.tar guix-4629d26755aa06344fb8f515fb0202776e70c429.tar.gz |
gnu: php: Build bcmath.
* gnu/packages/php.scm (php)[arguments]: Add "--enable-bcmath" to configure
flags.
Diffstat (limited to 'gnu/packages/php.scm')
-rw-r--r-- | gnu/packages/php.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index 5ffe7c8999..1d33b17a10 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2016 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -124,6 +125,7 @@ "--with-mysqli" ; Required for, e.g. wordpress "--with-pdo-mysql" "--with-zlib" + "--enable-bcmath" ; Required for, e.g. Zabbix frontend "--enable-calendar" "--enable-dba=shared" "--enable-exif" |