diff options
author | Timo Wilken <guix@twilken.net> | 2023-06-03 18:12:59 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-07-01 23:38:25 +0200 |
commit | d6ca51d82ac04bfe88404184a1305172dc662e20 (patch) | |
tree | 9b036a9ba7eeab41d751015b9a9fe5695633e5b9 | |
parent | 209c892ebec4af147353e7bffb24da3ffd3bcfa7 (diff) | |
download | guix-d6ca51d82ac04bfe88404184a1305172dc662e20.tar.gz guix-d6ca51d82ac04bfe88404184a1305172dc662e20.zip |
gnu: php: Enable sysvsem module.
Nextcloud 26 strongly recommends installing this module.
* gnu/packages/php.scm: (php)[arguments]: Add "--enable-sysvsem" configure
flag.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/php.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/php.scm b/gnu/packages/php.scm index c71d648cf4..cb6b4e7047 100644 --- a/gnu/packages/php.scm +++ b/gnu/packages/php.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2023 Timo Wilken <guix@twilken.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -133,7 +134,8 @@ "--enable-intl" "--enable-mbstring" "--enable-pcntl" - "--enable-sockets")) + "--enable-sockets" + "--enable-sysvsem")) ; Required for, e.g. Nextcloud #:phases (modify-phases %standard-phases (add-after 'unpack 'do-not-record-build-flags |