civodul pushed a commit to branch master
in repository guix.
commit d6ca51d82ac04bfe88404184a1305172dc662e20
Author: Timo Wilken <[email protected]>
AuthorDate: Sat Jun 3 18:12:59 2023 +0200
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 <[email protected]>
---
gnu/packages/php.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
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 <[email protected]>
;;; Copyright © 2020 Maxim Cournoyer <[email protected]>
;;; Copyright © 2021 Efraim Flashner <[email protected]>
+;;; Copyright © 2023 Timo Wilken <[email protected]>
;;;
;;; 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