From e0b755d8319391b34b54771cb65c88d45284c0aa Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 14 May 2014 14:21:48 +0200 Subject: PHP 5.6.0beta3 --- php.ini | 28 ++++++++++++++++++---------- php56.spec | 9 ++++++--- 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/php.ini b/php.ini index ec66ee5..42e85a5 100644 --- a/php.ini +++ b/php.ini @@ -573,7 +573,7 @@ html_errors = On ; http://php.net/error-log ; Example: ;error_log = php_errors.log -; Log errors to syslog (Event Log on NT, not valid in Windows 95). +; Log errors to syslog. ;error_log = syslog ;windows.show_crt_warning @@ -909,15 +909,20 @@ cli_server.color = On [iconv] ; Use of this INI entry is deprecated, use global input_encoding instead. -; If empty, input_encoding is used. +; If empty, default_charset or input_encoding or iconv.input_encoding is used. +; The precedence is: default_charset < intput_encoding < iconv.input_encoding ;iconv.input_encoding = ; Use of this INI entry is deprecated, use global internal_encoding instead. -; If empty, internal_encoding is used. +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding ;iconv.internal_encoding = ; Use of this INI entry is deprecated, use global output_encoding instead. -; If empty, output_encoding is used. +; If empty, default_charset or output_encoding or iconv.output_encoding is used. +; The precedence is: default_charset < output_encoding < iconv.output_encoding +; To use an output encoding conversion, iconv's output handler must be set +; otherwise output encoding conversion cannot be performed. ;iconv.output_encoding = [intl] @@ -988,7 +993,7 @@ mail.add_x_header = On ; The path to a log file that will log all mail() calls. Log entries include ; the full path of the script, line number, To address and headers. ;mail.log = -; Log mail to syslog (Event Log on NT, not valid in Windows 95). +; Log mail to syslog; ;mail.log = syslog [SQL] @@ -1657,22 +1662,25 @@ mssql.secure_connection = Off ; Use of this INI entry is deprecated, use global internal_encoding instead. ; internal/script encoding. ; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*) -; If empty, default_charset or internal_encoding is used in order. -; http://php.net/mbstring.internal-encoding +; If empty, default_charset or internal_encoding or iconv.internal_encoding is used. +; The precedence is: default_charset < internal_encoding < iconv.internal_encoding ;mbstring.internal_encoding = ; Use of this INI entry is deprecated, use global input_encoding instead. ; http input encoding. -; If empty, input_encoding is used. ; mbstring.encoding_traslation = On is needed to use this setting. +; If empty, default_charset or input_encoding or mbstring.input is used. +; The precedence is: default_charset < intput_encoding < mbsting.http_input ; http://php.net/mbstring.http-input ;mbstring.http_input = ; Use of this INI entry is deprecated, use global output_encoding instead. ; http output encoding. ; mb_output_handler must be registered as output buffer to function. -; If empty, output_encoding is used. -; http://php.net/mbstring.http-output +; If empty, default_charset or output_encoding or mbstring.http_output is used. +; The precedence is: default_charset < output_encoding < mbstring.http_output +; To use an output encoding conversion, mbstring's output handler must be set +; otherwise output encoding conversion cannot be performed. ;mbstring.http_output = ; enable automatic encoding translation according to diff --git a/php56.spec b/php56.spec index 267c40c..1d62e76 100644 --- a/php56.spec +++ b/php56.spec @@ -117,14 +117,14 @@ %global db_devel libdb-devel %endif -%global snapdate 201405061030 -#global rcver beta2 +#global snapdate 201405061030 +%global rcver beta3 Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.6.0 %if 0%{?snapdate:1}%{?rcver:1} -Release: 0.7.%{?snapdate}%{?rcver}%{?dist} +Release: 0.8.%{?snapdate}%{?rcver}%{?dist} %else Release: 1%{?dist} %endif @@ -1909,6 +1909,9 @@ fi %changelog +* Wed May 14 2014 Remi Collet 5.6.0-0.8.beta3 +- php 5.6.0beta3 + * Tue May 6 2014 Remi Collet 5.6.0-0.8.201405061030 - new snapshot php5.6-201405061030 -- cgit