mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-09 05:49:23 +00:00
php: add sqlite3 and mysql PACKAGECONFIG options
Signed-off-by: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
2fc71a181e
commit
c61ab94d5b
@@ -3,11 +3,11 @@ HOMEPAGE = "http://www.php.net"
|
||||
SECTION = "console/network"
|
||||
LICENSE = "PHP-3.0"
|
||||
BBCLASSEXTEND = "native"
|
||||
DEPENDS = "zlib libxml2 virtual/libiconv php-native lemon-native mysql5 \
|
||||
libc-client openssl sqlite3"
|
||||
DEPENDS = "zlib libxml2 virtual/libiconv php-native lemon-native \
|
||||
libc-client openssl"
|
||||
DEPENDS_virtclass-native = "zlib-native libxml2-native"
|
||||
|
||||
INC_PR = "r4"
|
||||
INC_PR = "r5"
|
||||
|
||||
SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2"
|
||||
|
||||
@@ -19,27 +19,37 @@ SSTATE_SCAN_FILES += "build-defs.h"
|
||||
|
||||
# Common EXTRA_OECONF
|
||||
COMMON_EXTRA_OECONF = "--enable-sockets --enable-pcntl --enable-shared"
|
||||
EXTRA_OECONF = "--enable-mbstring --enable-discard-path --enable-wddx \
|
||||
--enable-magic-quotes --enable-fastcgi --enable-fpm \
|
||||
EXTRA_OECONF = "--enable-mbstring \
|
||||
--enable-wddx \
|
||||
--enable-fpm \
|
||||
--with-imap=${STAGING_DIR_HOST} \
|
||||
--with-gettext=${STAGING_LIBDIR}/.. \
|
||||
--with-imap-ssl=${STAGING_DIR_HOST} \
|
||||
--with-zlib --with-zlib-dir=${STAGING_LIBDIR}/.. \
|
||||
--with-zlib=${STAGING_LIBDIR}/.. \
|
||||
--with-iconv=${STAGING_LIBDIR}/.. \
|
||||
--with-libxml-dir=${STAGING_BINDIR_CROSS} \
|
||||
--disable-embedded-mysqli \
|
||||
--with-mysql="${STAGING_DIR_TARGET}${prefix}" \
|
||||
--with-mysqli="${STAGING_BINDIR_CROSS}/mysql_config" \
|
||||
--with-sqlite3=${STAGING_LIBDIR}/.. --enable-sqlite-utf8 \
|
||||
--with-pdo-mysql="${STAGING_BINDIR_CROSS}/mysql_config" \
|
||||
--with-pdo-sqlite=${STAGING_LIBDIR}/.. ${COMMON_EXTRA_OECONF} \
|
||||
${COMMON_EXTRA_OECONF} \
|
||||
"
|
||||
EXTRA_OECONF_virtclass-native = "--with-cgi --without-libpng --without-libjpeg \
|
||||
--with-zlib --with-zlib-dir=${STAGING_LIBDIR_NATIVE}/.. \
|
||||
EXTRA_OECONF_virtclass-native = " \
|
||||
--with-zlib=${STAGING_LIBDIR_NATIVE}/.. \
|
||||
--with-libxml-dir=${STAGING_BINDIR_NATIVE} \
|
||||
${COMMON_EXTRA_OECONF} \
|
||||
"
|
||||
|
||||
PACKAGECONFIG ??= "mysql sqlite3"
|
||||
PACKAGECONFIG_class-native = ""
|
||||
|
||||
PACKAGECONFIG[mysql] = "--with-mysql=${STAGING_DIR_TARGET}${prefix} \
|
||||
--with-mysqli=${STAGING_BINDIR_CROSS}/mysql_config \
|
||||
--with-pdo-mysql=${STAGING_BINDIR_CROSS}/mysql_config \
|
||||
, \
|
||||
,mysql5"
|
||||
|
||||
PACKAGECONFIG[sqlite3] = "--with-sqlite3=${STAGING_LIBDIR}/.. \
|
||||
--with-pdo-sqlite=${STAGING_LIBDIR}/.. \
|
||||
, \
|
||||
,sqlite3"
|
||||
|
||||
LIBS_virtclass-native = " -lxml2 "
|
||||
LIBS_pn-php =" -lpthread "
|
||||
export LIBS
|
||||
|
||||
Reference in New Issue
Block a user