summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/php
diff options
context:
space:
mode:
authorJeroen Hofstee <jhofstee@victronenergy.com>2025-07-30 18:01:08 +0530
committerGyorgy Sarvari <skandigraun@gmail.com>2025-09-06 16:17:15 +0200
commit29c802c5684baba691577e825f00ba53360fabd5 (patch)
tree270663b27f279b789ef47d3f32e6265e9f96bbba /meta-oe/recipes-devtools/php
parent5291ae0d497bccd025743d5d20776b9657f71a7b (diff)
downloadmeta-openembedded-29c802c5684baba691577e825f00ba53360fabd5.tar.gz
php: sort PACKAGECONFIG options
This backports commit bb896f6b6f92 ("php: sort PACKAGECONFIG options"), which was missing in 8.4.5 and helps in reducing unnecessary diffs in future upgrades. Reference: https://git.openembedded.org/meta-openembedded/commit/meta-oe?id=bb896f6b6f92863e8f5c49e5a1f7d9bcb2578db0 Signed-off-by: Praveen Kumar <praveen.kumar@windriver.com> Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/php')
-rw-r--r--meta-oe/recipes-devtools/php/php_8.4.6.bb22
1 files changed, 10 insertions, 12 deletions
diff --git a/meta-oe/recipes-devtools/php/php_8.4.6.bb b/meta-oe/recipes-devtools/php/php_8.4.6.bb
index 5629a3dd3d..1b8c019a5d 100644
--- a/meta-oe/recipes-devtools/php/php_8.4.6.bb
+++ b/meta-oe/recipes-devtools/php/php_8.4.6.bb
@@ -92,27 +92,25 @@ PACKAGECONFIG ??= "mysql sqlite3 opcache openssl \
92" 92"
93PACKAGECONFIG:class-native = "" 93PACKAGECONFIG:class-native = ""
94 94
95PACKAGECONFIG[zip] = "--with-zip --with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip" 95PACKAGECONFIG[apache2] = "--with-apxs2=${STAGING_BINDIR_CROSS}/apxs,,apache2-native apache2"
96 96PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
97PACKAGECONFIG[mbregex] = "--enable-mbregex, --disable-mbregex, oniguruma"
98PACKAGECONFIG[mbstring] = "--enable-mbstring,,"
97PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \ 99PACKAGECONFIG[mysql] = "--with-mysqli=mysqlnd \
98 --with-pdo-mysql=mysqlnd \ 100 --with-pdo-mysql=mysqlnd \
99 ,--without-mysqli --without-pdo-mysql \ 101 ,--without-mysqli --without-pdo-mysql \
100 ,mysql5" 102 ,mysql5"
101 103PACKAGECONFIG[opcache] = "--enable-opcache,--disable-opcache"
104PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
105PACKAGECONFIG[pam] = ",,libpam"
106PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--without-pgsql,postgresql"
107PACKAGECONFIG[soap] = "--enable-soap, --disable-soap, libxml2"
102PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_LIBDIR}/.. \ 108PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_LIBDIR}/.. \
103 --with-pdo-sqlite=${STAGING_LIBDIR}/.. \ 109 --with-pdo-sqlite=${STAGING_LIBDIR}/.. \
104 ,--without-sqlite3 --without-pdo-sqlite \ 110 ,--without-sqlite3 --without-pdo-sqlite \
105 ,sqlite3" 111 ,sqlite3"
106PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--without-pgsql,postgresql"
107PACKAGECONFIG[soap] = "--enable-soap, --disable-soap, libxml2"
108PACKAGECONFIG[apache2] = "--with-apxs2=${STAGING_BINDIR_CROSS}/apxs,,apache2-native apache2"
109PACKAGECONFIG[pam] = ",,libpam"
110PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
111PACKAGECONFIG[opcache] = "--enable-opcache,--disable-opcache"
112PACKAGECONFIG[openssl] = "--with-openssl,--without-openssl,openssl"
113PACKAGECONFIG[valgrind] = "--with-valgrind=${STAGING_DIR_TARGET}/usr,--with-valgrind=no,valgrind" 112PACKAGECONFIG[valgrind] = "--with-valgrind=${STAGING_DIR_TARGET}/usr,--with-valgrind=no,valgrind"
114PACKAGECONFIG[mbregex] = "--enable-mbregex, --disable-mbregex, oniguruma" 113PACKAGECONFIG[zip] = "--with-zip --with-zlib-dir=${STAGING_EXECPREFIXDIR},,libzip"
115PACKAGECONFIG[mbstring] = "--enable-mbstring,,"
116 114
117export HOSTCC = "${BUILD_CC}" 115export HOSTCC = "${BUILD_CC}"
118export PHP_NATIVE_DIR = "${STAGING_BINDIR_NATIVE}" 116export PHP_NATIVE_DIR = "${STAGING_BINDIR_NATIVE}"