| 1 |
mabi |
1.22 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
olemarkus |
1.1 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
mabi |
1.22 |
# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r2.eclass,v 1.21 2012/01/13 05:38:42 olemarkus Exp $
|
| 4 |
vapier |
1.15 |
|
| 5 |
|
|
# @ECLASS: php-ext-source-r2.eclass
|
| 6 |
|
|
# @MAINTAINER:
|
| 7 |
|
|
# Gentoo PHP team <php-bugs@gentoo.org>
|
| 8 |
|
|
# @AUTHOR:
|
| 9 |
olemarkus |
1.1 |
# Author: Tal Peer <coredumb@gentoo.org>
|
| 10 |
|
|
# Author: Stuart Herbert <stuart@gentoo.org>
|
| 11 |
|
|
# Author: Luca Longinotti <chtekk@gentoo.org>
|
| 12 |
|
|
# Author: Jakub Moc <jakub@gentoo.org> (documentation)
|
| 13 |
|
|
# Author: Ole Markus With <olemarkus@gentoo.org>
|
| 14 |
|
|
# @BLURB: A unified interface for compiling and installing standalone PHP extensions.
|
| 15 |
|
|
# @DESCRIPTION:
|
| 16 |
|
|
# This eclass provides a unified interface for compiling and installing standalone
|
| 17 |
|
|
# PHP extensions (modules).
|
| 18 |
|
|
|
| 19 |
olemarkus |
1.5 |
inherit flag-o-matic autotools
|
| 20 |
olemarkus |
1.1 |
|
| 21 |
olemarkus |
1.4 |
EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install
|
| 22 |
olemarkus |
1.1 |
|
| 23 |
|
|
DEPEND=">=sys-devel/m4-1.4.3
|
| 24 |
|
|
>=sys-devel/libtool-1.5.18"
|
| 25 |
|
|
RDEPEND=""
|
| 26 |
|
|
|
| 27 |
|
|
# Because of USE deps, we require at least EAPI 2
|
| 28 |
|
|
case ${EAPI} in
|
| 29 |
olemarkus |
1.17 |
2|3|4) ;;
|
| 30 |
olemarkus |
1.1 |
*)
|
| 31 |
|
|
die "php-ext-source-r2 is not compatible with EAPI=${EAPI}"
|
| 32 |
|
|
esac
|
| 33 |
|
|
|
| 34 |
|
|
# @ECLASS-VARIABLE: PHP_EXT_NAME
|
| 35 |
|
|
# @DESCRIPTION:
|
| 36 |
|
|
# The extension name. This must be set, otherwise the eclass dies.
|
| 37 |
|
|
# Only automagically set by php-ext-pecl-r2.eclass, so unless your ebuild
|
| 38 |
|
|
# inherits that eclass, you must set this manually before inherit.
|
| 39 |
|
|
[[ -z "${PHP_EXT_NAME}" ]] && die "No module name specified for the php-ext-source-r2 eclass"
|
| 40 |
|
|
|
| 41 |
|
|
# @ECLASS-VARIABLE: PHP_EXT_INI
|
| 42 |
|
|
# @DESCRIPTION:
|
| 43 |
|
|
# Controls whether or not to add a line to php.ini for the extension.
|
| 44 |
|
|
# Defaults to "yes" and should not be changed in most cases.
|
| 45 |
|
|
[[ -z "${PHP_EXT_INI}" ]] && PHP_EXT_INI="yes"
|
| 46 |
|
|
|
| 47 |
|
|
# @ECLASS-VARIABLE: PHP_EXT_ZENDEXT
|
| 48 |
|
|
# @DESCRIPTION:
|
| 49 |
|
|
# Controls whether the extension is a ZendEngine extension or not.
|
| 50 |
|
|
# Defaults to "no" and if you don't know what is it, you don't need it.
|
| 51 |
|
|
[[ -z "${PHP_EXT_ZENDEXT}" ]] && PHP_EXT_ZENDEXT="no"
|
| 52 |
|
|
|
| 53 |
|
|
# @ECLASS-VARIABLE: USE_PHP
|
| 54 |
|
|
# @DESCRIPTION:
|
| 55 |
|
|
# Lists the PHP slots compatibile the extension is compatibile with
|
| 56 |
olemarkus |
1.10 |
[[ -z "${USE_PHP}" ]] && USE_PHP="php5-3 php5-2"
|
| 57 |
olemarkus |
1.1 |
|
| 58 |
robbat2 |
1.7 |
# @ECLASS-VARIABLE: PHP_EXT_OPTIONAL_USE
|
| 59 |
|
|
# @DESCRIPTION:
|
| 60 |
|
|
# If set, this is the USE flag that the PHP dependencies are behind
|
| 61 |
|
|
# Most commonly set as PHP_EXT_OPTIONAL_USE=php to get the dependencies behind
|
| 62 |
|
|
# USE=php.
|
| 63 |
|
|
|
| 64 |
olemarkus |
1.8 |
# @ECLASS-VARIABLE: PHP_EXT_S
|
| 65 |
|
|
# @DESCRIPTION:
|
| 66 |
|
|
# The relative location of the temporary build directory for the PHP extension within
|
| 67 |
|
|
# the source package. This is useful for packages that bundle the PHP extension.
|
| 68 |
|
|
# Defaults to ${S}
|
| 69 |
|
|
[[ -z "${PHP_EXT_S}" ]] && PHP_EXT_S="${S}"
|
| 70 |
|
|
|
| 71 |
olemarkus |
1.2 |
#Make sure at least one target is installed. Abuses USE dependencies.
|
| 72 |
olemarkus |
1.3 |
for target in ${USE_PHP}; do
|
| 73 |
|
|
IUSE="${IUSE} php_targets_${target}"
|
| 74 |
olemarkus |
1.1 |
target=${target/+}
|
| 75 |
olemarkus |
1.3 |
SELFDEPEND="${SELFDEPEND} =${CATEGORY}/${PF}[php_targets_${target}]"
|
| 76 |
olemarkus |
1.1 |
slot=${target/php}
|
| 77 |
|
|
slot=${slot/-/.}
|
| 78 |
darkside |
1.6 |
PHPDEPEND="${PHPDEPEND}
|
| 79 |
olemarkus |
1.3 |
php_targets_${target}? ( dev-lang/php:${slot} )"
|
| 80 |
olemarkus |
1.1 |
done
|
| 81 |
darkside |
1.6 |
|
| 82 |
|
|
RDEPEND="${RDEPEND}
|
| 83 |
robbat2 |
1.7 |
${PHP_EXT_OPTIONAL_USE}${PHP_EXT_OPTIONAL_USE:+? ( }
|
| 84 |
olemarkus |
1.3 |
|| ( ${SELFDEPEND} )
|
| 85 |
robbat2 |
1.7 |
${PHPDEPEND}
|
| 86 |
|
|
${PHP_EXT_OPTIONAL_USE:+ )}"
|
| 87 |
olemarkus |
1.1 |
|
| 88 |
mabi |
1.22 |
DEPEND="${DEPEND}
|
| 89 |
|
|
${PHP_EXT_OPTIONAL_USE}${PHP_EXT_OPTIONAL_USE:+? ( }
|
| 90 |
|
|
${PHPDEPEND}
|
| 91 |
|
|
${PHP_EXT_OPTIONAL_USE:+ )}
|
| 92 |
|
|
"
|
| 93 |
olemarkus |
1.1 |
|
| 94 |
|
|
# @FUNCTION: php-ext-source-r2_src_unpack
|
| 95 |
|
|
# @DESCRIPTION:
|
| 96 |
|
|
# runs standard src_unpack + _phpize
|
| 97 |
vapier |
1.15 |
|
| 98 |
olemarkus |
1.1 |
# @VARIABLE: PHP_EXT_SKIP_PHPIZE
|
| 99 |
|
|
# @DESCRIPTION:
|
| 100 |
|
|
# phpize will be run by default for all ebuilds that use
|
| 101 |
darkside |
1.6 |
# php-ext-source-r2_src_unpack
|
| 102 |
olemarkus |
1.1 |
# Set PHP_EXT_SKIP_PHPIZE="yes" in your ebuild if you do not want to run phpize.
|
| 103 |
|
|
php-ext-source-r2_src_unpack() {
|
| 104 |
|
|
unpack ${A}
|
| 105 |
olemarkus |
1.8 |
local slot orig_s="${PHP_EXT_S}"
|
| 106 |
olemarkus |
1.1 |
for slot in $(php_get_slots); do
|
| 107 |
olemarkus |
1.3 |
cp -r "${orig_s}" "${WORKDIR}/${slot}"
|
| 108 |
olemarkus |
1.4 |
done
|
| 109 |
|
|
}
|
| 110 |
|
|
|
| 111 |
|
|
php-ext-source-r2_src_prepare() {
|
| 112 |
olemarkus |
1.8 |
local slot orig_s="${PHP_EXT_S}"
|
| 113 |
olemarkus |
1.4 |
for slot in $(php_get_slots); do
|
| 114 |
olemarkus |
1.3 |
php_init_slot_env ${slot}
|
| 115 |
olemarkus |
1.4 |
php-ext-source-r2_phpize
|
| 116 |
olemarkus |
1.1 |
done
|
| 117 |
|
|
}
|
| 118 |
|
|
|
| 119 |
vapier |
1.15 |
# @FUNCTION: php-ext-source-r2_phpize
|
| 120 |
olemarkus |
1.1 |
# @DESCRIPTION:
|
| 121 |
|
|
# Runs phpize and autotools in addition to the standard src_unpack
|
| 122 |
|
|
php-ext-source-r2_phpize() {
|
| 123 |
olemarkus |
1.4 |
if [[ "${PHP_EXT_SKIP_PHPIZE}" != 'yes' ]] ; then
|
| 124 |
|
|
# Create configure out of config.m4
|
| 125 |
|
|
# I wish I could run this to solve #329071, but I cannot
|
| 126 |
vapier |
1.16 |
#autotools_run_tool ${PHPIZE}
|
| 127 |
olemarkus |
1.4 |
${PHPIZE}
|
| 128 |
|
|
# force run of libtoolize and regeneration of related autotools
|
| 129 |
|
|
# files (bug 220519)
|
| 130 |
|
|
rm aclocal.m4
|
| 131 |
|
|
eautoreconf
|
| 132 |
darkside |
1.6 |
fi
|
| 133 |
olemarkus |
1.1 |
}
|
| 134 |
|
|
|
| 135 |
|
|
# @FUNCTION: php-ext-source-r2_src_configure
|
| 136 |
|
|
# @DESCRIPTION:
|
| 137 |
|
|
# Takes care of standard configure for PHP extensions (modules).
|
| 138 |
vapier |
1.15 |
|
| 139 |
olemarkus |
1.1 |
# @VARIABLE: my_conf
|
| 140 |
|
|
# @DESCRIPTION:
|
| 141 |
|
|
# Set this in the ebuild to pass configure options to econf.
|
| 142 |
|
|
php-ext-source-r2_src_configure() {
|
| 143 |
|
|
local slot
|
| 144 |
|
|
for slot in $(php_get_slots); do
|
| 145 |
olemarkus |
1.3 |
php_init_slot_env ${slot}
|
| 146 |
olemarkus |
1.1 |
# Set the correct config options
|
| 147 |
olemarkus |
1.14 |
econf --with-php-config=${PHPCONFIG} ${my_conf} || die "Unable to configure code to compile"
|
| 148 |
olemarkus |
1.1 |
done
|
| 149 |
|
|
}
|
| 150 |
|
|
|
| 151 |
|
|
# @FUNCTION: php-ext-source-r2_src_compile
|
| 152 |
|
|
# @DESCRIPTION:
|
| 153 |
|
|
# Takes care of standard compile for PHP extensions (modules).
|
| 154 |
|
|
php-ext-source-r2_src_compile() {
|
| 155 |
|
|
# net-snmp creates this file #324739
|
| 156 |
|
|
addpredict /usr/share/snmp/mibs/.index
|
| 157 |
|
|
# shm extension createss a semaphore file #173574
|
| 158 |
|
|
addpredict /session_mm_cli0.sem
|
| 159 |
darkside |
1.6 |
local slot
|
| 160 |
olemarkus |
1.1 |
for slot in $(php_get_slots); do
|
| 161 |
olemarkus |
1.3 |
php_init_slot_env ${slot}
|
| 162 |
olemarkus |
1.1 |
emake || die "Unable to make code"
|
| 163 |
|
|
|
| 164 |
|
|
done
|
| 165 |
|
|
}
|
| 166 |
|
|
|
| 167 |
|
|
# @FUNCTION: php-ext-source-r1_src_install
|
| 168 |
|
|
# @DESCRIPTION:
|
| 169 |
|
|
# Takes care of standard install for PHP extensions (modules).
|
| 170 |
|
|
|
| 171 |
|
|
# @VARIABLE: DOCS
|
| 172 |
|
|
# @DESCRIPTION:
|
| 173 |
|
|
# Set in ebuild if you wish to install additional, package-specific documentation.
|
| 174 |
|
|
php-ext-source-r2_src_install() {
|
| 175 |
|
|
local slot
|
| 176 |
|
|
for slot in $(php_get_slots); do
|
| 177 |
olemarkus |
1.3 |
php_init_slot_env ${slot}
|
| 178 |
olemarkus |
1.1 |
|
| 179 |
|
|
# Let's put the default module away
|
| 180 |
|
|
insinto "${EXT_DIR}"
|
| 181 |
|
|
newins "modules/${PHP_EXT_NAME}.so" "${PHP_EXT_NAME}.so" || die "Unable to install extension"
|
| 182 |
|
|
|
| 183 |
olemarkus |
1.3 |
local doc
|
| 184 |
olemarkus |
1.1 |
for doc in ${DOCS} ; do
|
| 185 |
|
|
[[ -s ${doc} ]] && dodoc ${doc}
|
| 186 |
|
|
done
|
| 187 |
|
|
|
| 188 |
olemarkus |
1.14 |
INSTALL_ROOT="${D}" emake install-headers
|
| 189 |
olemarkus |
1.1 |
done
|
| 190 |
|
|
php-ext-source-r2_createinifiles
|
| 191 |
|
|
}
|
| 192 |
|
|
|
| 193 |
|
|
|
| 194 |
|
|
php_get_slots() {
|
| 195 |
olemarkus |
1.3 |
local s slot
|
| 196 |
|
|
for slot in ${USE_PHP}; do
|
| 197 |
|
|
use php_targets_${slot} && s+=" ${slot/-/.}"
|
| 198 |
olemarkus |
1.1 |
done
|
| 199 |
|
|
echo $s
|
| 200 |
|
|
}
|
| 201 |
|
|
|
| 202 |
|
|
php_init_slot_env() {
|
| 203 |
|
|
libdir=$(get_libdir)
|
| 204 |
|
|
|
| 205 |
olemarkus |
1.3 |
PHPIZE="/usr/${libdir}/${1}/bin/phpize"
|
| 206 |
|
|
PHPCONFIG="/usr/${libdir}/${1}/bin/php-config"
|
| 207 |
|
|
PHPCLI="/usr/${libdir}/${1}/bin/php"
|
| 208 |
|
|
PHPCGI="/usr/${libdir}/${1}/bin/php-cgi"
|
| 209 |
olemarkus |
1.1 |
PHP_PKG="$(best_version =dev-lang/php-${1:3}*)"
|
| 210 |
olemarkus |
1.3 |
PHPPREFIX="/usr/${libdir}/${slot}"
|
| 211 |
olemarkus |
1.1 |
EXT_DIR="$(${PHPCONFIG} --extension-dir 2>/dev/null)"
|
| 212 |
olemarkus |
1.5 |
PHP_CURRENTSLOT=${1:3}
|
| 213 |
olemarkus |
1.1 |
|
| 214 |
olemarkus |
1.8 |
PHP_EXT_S="${WORKDIR}/${1}"
|
| 215 |
|
|
cd "${PHP_EXT_S}"
|
| 216 |
olemarkus |
1.1 |
}
|
| 217 |
|
|
|
| 218 |
|
|
php-ext-source-r2_buildinilist() {
|
| 219 |
|
|
# Work out the list of <ext>.ini files to edit/add to
|
| 220 |
|
|
if [[ -z "${PHPSAPILIST}" ]] ; then
|
| 221 |
|
|
PHPSAPILIST="apache2 cli cgi fpm"
|
| 222 |
|
|
fi
|
| 223 |
|
|
|
| 224 |
olemarkus |
1.12 |
PHPINIFILELIST=""
|
| 225 |
olemarkus |
1.3 |
local x
|
| 226 |
olemarkus |
1.1 |
for x in ${PHPSAPILIST} ; do
|
| 227 |
|
|
if [[ -f "/etc/php/${x}-${1}/php.ini" ]] ; then
|
| 228 |
|
|
PHPINIFILELIST="${PHPINIFILELIST} etc/php/${x}-${1}/ext/${PHP_EXT_NAME}.ini"
|
| 229 |
|
|
fi
|
| 230 |
|
|
done
|
| 231 |
olemarkus |
1.12 |
PHPFULLINIFILELIST="${PHPFULLINIFILELIST} ${PHPINIFILELIST}"
|
| 232 |
olemarkus |
1.1 |
}
|
| 233 |
|
|
|
| 234 |
|
|
# @FUNCTION: php-ext-source-r2_createinifiles
|
| 235 |
|
|
# @DESCRIPTION:
|
| 236 |
|
|
# Builds ini files for every enabled slot and SAPI
|
| 237 |
|
|
php-ext-source-r2_createinifiles() {
|
| 238 |
|
|
local slot
|
| 239 |
darkside |
1.6 |
for slot in $(php_get_slots); do
|
| 240 |
olemarkus |
1.3 |
php_init_slot_env ${slot}
|
| 241 |
olemarkus |
1.1 |
# Pull in the PHP settings
|
| 242 |
|
|
|
| 243 |
|
|
# Build the list of <ext>.ini files to edit/add to
|
| 244 |
olemarkus |
1.3 |
php-ext-source-r2_buildinilist ${slot}
|
| 245 |
olemarkus |
1.1 |
|
| 246 |
olemarkus |
1.13 |
|
| 247 |
olemarkus |
1.1 |
# Add the needed lines to the <ext>.ini files
|
| 248 |
olemarkus |
1.13 |
local file
|
| 249 |
olemarkus |
1.1 |
if [[ "${PHP_EXT_INI}" = "yes" ]] ; then
|
| 250 |
vapier |
1.16 |
for file in ${PHPINIFILELIST}; do
|
| 251 |
olemarkus |
1.13 |
php-ext-source-r2_addextension "${PHP_EXT_NAME}.so" "${file}"
|
| 252 |
|
|
done
|
| 253 |
olemarkus |
1.1 |
fi
|
| 254 |
|
|
|
| 255 |
|
|
# Symlink the <ext>.ini files from ext/ to ext-active/
|
| 256 |
olemarkus |
1.13 |
local inifile
|
| 257 |
olemarkus |
1.1 |
for inifile in ${PHPINIFILELIST} ; do
|
| 258 |
olemarkus |
1.12 |
if [[ -n "${PHP_EXT_INIFILE}" ]]; then
|
| 259 |
olemarkus |
1.13 |
cat "${FILESDIR}/${PHP_EXT_INIFILE}" > "${inifile}"
|
| 260 |
olemarkus |
1.12 |
einfo "Added content of ${FILESDIR}/${PHP_EXT_INIFILE} to ${inifile}"
|
| 261 |
|
|
fi
|
| 262 |
|
|
|
| 263 |
|
|
|
| 264 |
|
|
|
| 265 |
|
|
|
| 266 |
olemarkus |
1.1 |
inidir="${inifile/${PHP_EXT_NAME}.ini/}"
|
| 267 |
|
|
inidir="${inidir/ext/ext-active}"
|
| 268 |
|
|
dodir "/${inidir}"
|
| 269 |
|
|
dosym "/${inifile}" "/${inifile/ext/ext-active}"
|
| 270 |
|
|
done
|
| 271 |
|
|
|
| 272 |
|
|
# Add support for installing PHP files into a version dependant directory
|
| 273 |
|
|
PHP_EXT_SHARED_DIR="/usr/share/php/${PHP_EXT_NAME}"
|
| 274 |
|
|
done
|
| 275 |
|
|
}
|
| 276 |
|
|
|
| 277 |
|
|
php-ext-source-r2_addextension() {
|
| 278 |
|
|
if [[ "${PHP_EXT_ZENDEXT}" = "yes" ]] ; then
|
| 279 |
|
|
# We need the full path for ZendEngine extensions
|
| 280 |
|
|
# and we need to check for debugging enabled!
|
| 281 |
olemarkus |
1.5 |
if has_version "dev-lang/php:${PHP_CURRENTSLOT}[threads]" ; then
|
| 282 |
|
|
if has_version "dev-lang/php:${PHP_CURRENTSLOT}[debug]" ; then
|
| 283 |
olemarkus |
1.1 |
ext_type="zend_extension_debug_ts"
|
| 284 |
|
|
else
|
| 285 |
|
|
ext_type="zend_extension_ts"
|
| 286 |
|
|
fi
|
| 287 |
olemarkus |
1.3 |
ext_file="${EXT_DIR}/${1}"
|
| 288 |
olemarkus |
1.1 |
else
|
| 289 |
olemarkus |
1.5 |
if has_version "dev-lang/php:${PHP_CURRENTSLOT}[debug]"; then
|
| 290 |
olemarkus |
1.1 |
ext_type="zend_extension_debug"
|
| 291 |
|
|
else
|
| 292 |
|
|
ext_type="zend_extension"
|
| 293 |
|
|
fi
|
| 294 |
olemarkus |
1.3 |
ext_file="${EXT_DIR}/${1}"
|
| 295 |
olemarkus |
1.1 |
fi
|
| 296 |
|
|
|
| 297 |
|
|
# php-5.3 unifies zend_extension loading and just requires the
|
| 298 |
|
|
# zend_extension keyword with no suffix
|
| 299 |
|
|
# TODO: drop previous code and this check once <php-5.3 support is
|
| 300 |
|
|
# discontinued
|
| 301 |
|
|
if has_version '>=dev-lang/php-5.3' ; then
|
| 302 |
|
|
ext_type="zend_extension"
|
| 303 |
|
|
fi
|
| 304 |
|
|
else
|
| 305 |
|
|
# We don't need the full path for normal extensions!
|
| 306 |
|
|
ext_type="extension"
|
| 307 |
olemarkus |
1.3 |
ext_file="${1}"
|
| 308 |
olemarkus |
1.1 |
fi
|
| 309 |
|
|
|
| 310 |
olemarkus |
1.13 |
php-ext-source-r2_addtoinifile "${ext_type}" "${ext_file}" "${2}" "Extension added"
|
| 311 |
olemarkus |
1.1 |
}
|
| 312 |
|
|
|
| 313 |
|
|
# $1 - Setting name
|
| 314 |
|
|
# $2 - Setting value
|
| 315 |
|
|
# $3 - File to add to
|
| 316 |
|
|
# $4 - Sanitized text to output
|
| 317 |
|
|
php-ext-source-r2_addtoinifile() {
|
| 318 |
olemarkus |
1.13 |
local inifile="${WORKDIR}/${3}"
|
| 319 |
|
|
if [[ ! -d $(dirname ${inifile}) ]] ; then
|
| 320 |
|
|
mkdir -p $(dirname ${inifile})
|
| 321 |
olemarkus |
1.1 |
fi
|
| 322 |
|
|
|
| 323 |
|
|
# Are we adding the name of a section?
|
| 324 |
|
|
if [[ ${1:0:1} == "[" ]] ; then
|
| 325 |
olemarkus |
1.13 |
echo "${1}" >> "${inifile}"
|
| 326 |
olemarkus |
1.3 |
my_added="${1}"
|
| 327 |
olemarkus |
1.1 |
else
|
| 328 |
olemarkus |
1.13 |
echo "${1}=${2}" >> "${inifile}"
|
| 329 |
olemarkus |
1.3 |
my_added="${1}=${2}"
|
| 330 |
olemarkus |
1.1 |
fi
|
| 331 |
|
|
|
| 332 |
olemarkus |
1.3 |
if [[ -z "${4}" ]] ; then
|
| 333 |
|
|
einfo "Added '${my_added}' to /${3}"
|
| 334 |
olemarkus |
1.1 |
else
|
| 335 |
olemarkus |
1.3 |
einfo "${4} to /${3}"
|
| 336 |
olemarkus |
1.1 |
fi
|
| 337 |
|
|
|
| 338 |
olemarkus |
1.3 |
insinto /$(dirname ${3})
|
| 339 |
olemarkus |
1.13 |
doins "${inifile}"
|
| 340 |
olemarkus |
1.1 |
}
|
| 341 |
|
|
|
| 342 |
|
|
# @FUNCTION: php-ext-source-r2_addtoinifiles
|
| 343 |
|
|
# @USAGE: <setting name> <setting value> [message to output]; or just [section name]
|
| 344 |
|
|
# @DESCRIPTION:
|
| 345 |
|
|
# Add value settings to php.ini file installed by the extension (module).
|
| 346 |
|
|
# You can also add a [section], see examples below.
|
| 347 |
|
|
#
|
| 348 |
|
|
# @CODE
|
| 349 |
|
|
# Add some settings for the extension:
|
| 350 |
|
|
#
|
| 351 |
|
|
# php-ext-source-r2_addtoinifiles "zend_optimizer.optimization_level" "15"
|
| 352 |
|
|
# php-ext-source-r2_addtoinifiles "zend_optimizer.enable_loader" "0"
|
| 353 |
|
|
# php-ext-source-r2_addtoinifiles "zend_optimizer.disable_licensing" "0"
|
| 354 |
|
|
#
|
| 355 |
|
|
# Adding values to a section in php.ini file installed by the extension:
|
| 356 |
|
|
#
|
| 357 |
|
|
# php-ext-source-r2_addtoinifiles "[Debugger]"
|
| 358 |
|
|
# php-ext-source-r2_addtoinifiles "debugger.enabled" "on"
|
| 359 |
|
|
# php-ext-source-r2_addtoinifiles "debugger.profiler_enabled" "on"
|
| 360 |
|
|
# @CODE
|
| 361 |
|
|
php-ext-source-r2_addtoinifiles() {
|
| 362 |
olemarkus |
1.3 |
local x
|
| 363 |
olemarkus |
1.12 |
for x in ${PHPFULLINIFILELIST} ; do
|
| 364 |
olemarkus |
1.3 |
php-ext-source-r2_addtoinifile "${1}" "${2}" "${x}" "${3}"
|
| 365 |
olemarkus |
1.1 |
done
|
| 366 |
|
|
}
|