* Wed May 3 2006 Joe Orton <jorton@redhat.com> 5.1.3-3
- update to 5.1.3
This commit is contained in:
parent
28319a7a48
commit
908653001c
File diff suppressed because it is too large
Load Diff
28
php.ini
28
php.ini
@ -197,7 +197,7 @@ implicit_flush = Off
|
|||||||
|
|
||||||
; The unserialize callback function will be called (with the undefined class'
|
; The unserialize callback function will be called (with the undefined class'
|
||||||
; name as parameter), if the unserializer finds an 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
|
; A warning appears if the specified function is not defined, or if the
|
||||||
; function doesn't include/implement the missing class.
|
; function doesn't include/implement the missing class.
|
||||||
; So only set this entry, if you really want to implement such a
|
; 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.
|
; being interrupted by the user or a browser timing out.
|
||||||
; ignore_user_abort = On
|
; 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
|
; Misc
|
||||||
;
|
;
|
||||||
@ -1054,6 +1064,11 @@ mssql.secure_connection = Off
|
|||||||
; FreeTDS defaults to 4096
|
; FreeTDS defaults to 4096
|
||||||
;mssql.max_procs = -1
|
;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]
|
[Assertion]
|
||||||
; Assert(expr); active by default.
|
; Assert(expr); active by default.
|
||||||
;assert.active = On
|
;assert.active = On
|
||||||
@ -1121,7 +1136,7 @@ pfpro.defaulttimeout = 30
|
|||||||
; registered as output buffer to function
|
; registered as output buffer to function
|
||||||
;mbstring.http_output = SJIS
|
;mbstring.http_output = SJIS
|
||||||
|
|
||||||
; enable automatic encoding translation accoding to
|
; enable automatic encoding translation according to
|
||||||
; mbstring.internal_encoding setting. Input chars are
|
; mbstring.internal_encoding setting. Input chars are
|
||||||
; converted to internal encoding by setting this to On.
|
; converted to internal encoding by setting this to On.
|
||||||
; Note: Do _not_ use automatic encoding translation for
|
; Note: Do _not_ use automatic encoding translation for
|
||||||
@ -1146,6 +1161,9 @@ pfpro.defaulttimeout = 30
|
|||||||
; 4: Overload ereg*() functions
|
; 4: Overload ereg*() functions
|
||||||
;mbstring.func_overload = 0
|
;mbstring.func_overload = 0
|
||||||
|
|
||||||
|
; enable strict encoding detection.
|
||||||
|
;mbstring.strict_encoding = Off
|
||||||
|
|
||||||
[FrontBase]
|
[FrontBase]
|
||||||
;fbsql.allow_persistent = On
|
;fbsql.allow_persistent = On
|
||||||
;fbsql.autocommit = On
|
;fbsql.autocommit = On
|
||||||
@ -1161,6 +1179,12 @@ pfpro.defaulttimeout = 30
|
|||||||
;fbsql.max_results = 128
|
;fbsql.max_results = 128
|
||||||
;fbsql.batchSize = 1000
|
;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]
|
||||||
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
|
; 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
|
; With mbstring support this will automatically be converted into the encoding
|
||||||
|
9
php.spec
9
php.spec
@ -3,9 +3,9 @@
|
|||||||
|
|
||||||
Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
|
Summary: The PHP HTML-embedded scripting language. (PHP: Hypertext Preprocessor)
|
||||||
Name: php
|
Name: php
|
||||||
Version: 5.1.2
|
Version: 5.1.3
|
||||||
Release: 5
|
Release: 3
|
||||||
License: The PHP License
|
License: The PHP License v3.01
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
URL: http://www.php.net/
|
URL: http://www.php.net/
|
||||||
|
|
||||||
@ -560,6 +560,9 @@ rm files.*
|
|||||||
%files pdo -f files.pdo
|
%files pdo -f files.pdo
|
||||||
|
|
||||||
%changelog
|
%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
|
* Tue Feb 28 2006 Joe Orton <jorton@redhat.com> 5.1.2-5
|
||||||
- provide php-api (#183227)
|
- provide php-api (#183227)
|
||||||
- add provides for all builtin modules (Tim Jackson, #173804)
|
- add provides for all builtin modules (Tim Jackson, #173804)
|
||||||
|
Loading…
Reference in New Issue
Block a user