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>
This commit is contained in:
Timo Wilken 2023-06-03 18:12:59 +02:00 committed by Ludovic Courtès
parent 209c892ebe
commit d6ca51d82a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -6,6 +6,7 @@
;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -133,7 +134,8 @@ (define-public php
"--enable-intl" "--enable-intl"
"--enable-mbstring" "--enable-mbstring"
"--enable-pcntl" "--enable-pcntl"
"--enable-sockets")) "--enable-sockets"
"--enable-sysvsem")) ; Required for, e.g. Nextcloud
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'do-not-record-build-flags (add-after 'unpack 'do-not-record-build-flags