From 14b5cf12ac65c1c8c95e1a1f509a3932d59bd407 Mon Sep 17 00:00:00 2001 From: Daniel Jahre Date: Mon, 4 Dec 2006 11:18:51 +0000 Subject: [PATCH] Daniel Jahre: added soap switch to php package to enable soap support [2006112911032732742] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@8090 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/alessandro/php/config.in | 1 + package/alessandro/php/php.conf | 1 + 2 files changed, 2 insertions(+) diff --git a/package/alessandro/php/config.in b/package/alessandro/php/config.in index 4b0a45fd8..37f827403 100644 --- a/package/alessandro/php/config.in +++ b/package/alessandro/php/config.in @@ -54,6 +54,7 @@ if pkgcheck php X ; then bool "Build PHP with mcrypt support" ROCKCFG_PKG_PHP_mcrypt 0 bool "Build PHP with mhash support" ROCKCFG_PKG_PHP_mhash 0 + bool "Build PHP with SOAP support" ROCKCFG_PKG_PHP_soap 0 menu_end fi diff --git a/package/alessandro/php/php.conf b/package/alessandro/php/php.conf index 916a30426..47df8dc25 100644 --- a/package/alessandro/php/php.conf +++ b/package/alessandro/php/php.conf @@ -50,6 +50,7 @@ fi [ "$ROCKCFG_PKG_PHP_mcrypt" == 1 ] && var_append extraconfopt " " "--with-mcrypt" [ "$ROCKCFG_PKG_PHP_mcrypt" == 1 ] && var_append extraconfopt " " "--with-mhash" [ "$ROCKCFG_PKG_PHP_libgd" == 1 ] && var_append extraconfopt " " "--with-gd" +[ "$ROCKCFG_PKG_PHP_soap" == 1 ] && var_append extraconfopt " " "--enable-soap" [ "$ROCKCFG_PKG_PHP_imap" == 1 ] && var_append extraconfopt " " "--with-imap" [ "$ROCKCFG_PKG_PHP_imap" == 1 -a "$ROCKCFG_PKG_PHP_openssl" == 1 ] && var_append extraconfopt " " "--with-imap-ssl" ;