* Wed May 3 2006 Joe Orton <jorton@redhat.com> 5.1.3-3

- update to 5.1.3
This commit is contained in:
jorton 2006-05-03 12:59:06 +00:00
parent 28319a7a48
commit 908653001c
3 changed files with 453 additions and 690 deletions

File diff suppressed because it is too large Load Diff

28
php.ini
View File

@ -197,7 +197,7 @@ implicit_flush = Off
; The unserialize callback function will be called (with the undefined class'
; name as parameter), if the unserializer finds an undefined class
; which should be instanciated.
; which should be instantiated.
; A warning appears if the specified function is not defined, or if the
; function doesn't include/implement the missing class.
; So only set this entry, if you really want to implement such a
@ -285,6 +285,16 @@ disable_classes =
; being interrupted by the user or a browser timing out.
; ignore_user_abort = On
; Determines the size of the realpath cache to be used by PHP. This value should
; be increased on systems where PHP opens many files to reflect the quantity of
; the file operations performed.
; realpath_cache_size=16k
; Duration of time, in seconds for which to cache realpath information for a given
; file or directory. For systems with rarely changing files, consider increasing this
; value.
; realpath_cache_ttl=120
;
; Misc
;
@ -1054,6 +1064,11 @@ mssql.secure_connection = Off
; FreeTDS defaults to 4096
;mssql.max_procs = -1
; Specify client character set.
; If empty or not set the client charset from freetds.comf is used
; This is only used when compiled with FreeTDS
;mssql.charset = "ISO-8859-1"
[Assertion]
; Assert(expr); active by default.
;assert.active = On
@ -1121,7 +1136,7 @@ pfpro.defaulttimeout = 30
; registered as output buffer to function
;mbstring.http_output = SJIS
; enable automatic encoding translation accoding to
; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
@ -1146,6 +1161,9 @@ pfpro.defaulttimeout = 30
; 4: Overload ereg*() functions
;mbstring.func_overload = 0
; enable strict encoding detection.
;mbstring.strict_encoding = Off
[FrontBase]
;fbsql.allow_persistent = On
;fbsql.autocommit = On
@ -1161,6 +1179,12 @@ pfpro.defaulttimeout = 30
;fbsql.max_results = 128
;fbsql.batchSize = 1000
[gd]
; Tell the jpeg decode to libjpeg warnings and try to create
; a gd image. The warning will then be displayed as notices
; disabled by default
;gd.jpeg_ignore_warning = 0
[exif]
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
; With mbstring support this will automatically be converted into the encoding

View File

@ -3,9 +3,9 @@
Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
Name: php
Version: 5.1.2
Release: 5
License: The PHP License
Version: 5.1.3
Release: 3
License: The PHP License v3.01
Group: Development/Languages
URL: http://www.php.net/
@ -560,6 +560,9 @@ rm files.*
%files pdo -f files.pdo
%changelog
* Wed May 3 2006 Joe Orton <jorton@redhat.com> 5.1.3-3
- update to 5.1.3
* Tue Feb 28 2006 Joe Orton <jorton@redhat.com> 5.1.2-5
- provide php-api (#183227)
- add provides for all builtin modules (Tim Jackson, #173804)