From 1248b86267ceb545a2dd249c0067ad8cdf49636a Mon Sep 17 00:00:00 2001 From: Dan Walkes Date: Sat, 18 May 2019 18:19:42 -0600 Subject: [PATCH] package/php: add config scan directory option To support using multiple php configuration files, we pass --with-config-file-scan-dir=/etc/php.d. This allows to put snippets of PHP configuration files in /etc/php.d. For php option details see link at [1]. [1] https://www.php.net/manual/en/configuration.file.php Signed-off-by: Dan Walkes [Thomas: make it unconditional] Signed-off-by: Thomas Petazzoni --- package/php/php.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/php/php.mk b/package/php/php.mk index 0213295c82..b679531238 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -16,6 +16,7 @@ PHP_LICENSE_FILES = LICENSE PHP_CONF_OPTS = \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ + --with-config-file-scan-dir=/etc/php.d \ --disable-all \ --without-pear \ --with-config-file-path=/etc \ -- 2.30.2