diff options
author | Max Kellermann <max.kellermann@gmail.com> | 2018-09-27 14:55:18 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-09-27 08:58:18 -0700 |
commit | eaf93e8c671c23d531d57cd3d559781c4e77ff72 (patch) | |
tree | 096ed9af6a653be7d485fe803f31d3aeb32dfd44 | |
parent | ee71404eb2c62c4ec4c682e2f8f583cde4aa7386 (diff) | |
download | meta-openembedded-eaf93e8c671c23d531d57cd3d559781c4e77ff72.tar.gz |
php: add "--without-sqlite3 --without-pdo-sqlite"
Removing "sqlite3" from `PACKAGECONFIG` doesn't actually disable
SQLite, because those options default to "yes". It just switches from
the system SQLite to PHP's internal SQLite copy.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/php/php.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/php/php.inc b/meta-oe/recipes-devtools/php/php.inc index 9eacabe03..99a25b94b 100644 --- a/meta-oe/recipes-devtools/php/php.inc +++ b/meta-oe/recipes-devtools/php/php.inc | |||
@@ -79,7 +79,7 @@ PACKAGECONFIG[mysql] = "--with-mysql=${STAGING_DIR_TARGET}${prefix} \ | |||
79 | 79 | ||
80 | PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_LIBDIR}/.. \ | 80 | PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_LIBDIR}/.. \ |
81 | --with-pdo-sqlite=${STAGING_LIBDIR}/.. \ | 81 | --with-pdo-sqlite=${STAGING_LIBDIR}/.. \ |
82 | , \ | 82 | ,--without-sqlite3 --without-pdo-sqlite \ |
83 | ,sqlite3" | 83 | ,sqlite3" |
84 | PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--without-pgsql,postgresql" | 84 | PACKAGECONFIG[pgsql] = "--with-pgsql=${STAGING_DIR_TARGET}${exec_prefix},--without-pgsql,postgresql" |
85 | PACKAGECONFIG[soap] = "--enable-libxml --enable-soap, --disable-soap, libxml2" | 85 | PACKAGECONFIG[soap] = "--enable-libxml --enable-soap, --disable-soap, libxml2" |