foobar
7d3dc68a79
Nuke tabs.
24 years ago
foobar
f93096ecb6
Removed tabs and combined those multiple AC_CHECK_FUNCS calls to one.
24 years ago
Ilia Alshanetsky
d8480c8088
Fixed symlink/link functions on ZTS builds.
Made URL detection in symlink code use php_stream_locate_url_wrapper().
24 years ago
foobar
0abca4f60a
Cleanup. (no tabs here!)
24 years ago
Wez Furlong
dabf1053cd
Refine stream_select() to work with streams that have data in their read
buffers.
When selecting for read, the streams are examined; if any of them have
pending read data, no actual select(2) call is performed; instead the
streams with buffered data are returned; just like a regular select
call.
Prevent erroneous warning in stream_select when obtaining the fd.
24 years ago
Sterling Hughes
102c945501
no need to double fetch
24 years ago
Hartmut Holzgraefe
eb137d3d80
@ updated FDF extension to work with current Adodeb fdftk 5.0 (hartmut)
reworked some existing stuff
added some functions suporting stuff that have been added since fdftk 2.0
emulating read from/save to strings by transparently using temp. files
(activeX version of fdftk has this, but not plain C version :( )
24 years ago
Hartmut Holzgraefe
f768d343f5
fixed build for getopt_long-less platforms,
removed left-over todo comments
24 years ago
foobar
3fd56c2995
Changed --with-gd to behave same way as --with-mysql does.
24 years ago
Moriyoshi Koizumi
bce3d0cf7d
Renamed the test cases.
24 years ago
Jon Parise
20e6ed36ec
Convert C++ style comments to C style comments.
24 years ago
Hartmut Holzgraefe
30ed5a5483
killed some warnings identified by sebastian
24 years ago
Hartmut Holzgraefe
8b7e9d7774
some changes to how request input data (Content-Lenght >0) is handled
- webdav-specific stuff removed (should be handled using httpd.conf
LIMIT or equivalents)
- always_populate_raw_post_data now working on any method, not just
POST (and webdav methods with allow_webdav_methods), when
Content-Length is greater zero
- raw input data is also available using php://input stream,
this way one doesn't have to care about memory_limit
- input data is now always consumed (although maybe ignored,
this fixes we had withproblems with keep-alive connections
@ raw POST data is now available as php://input stream (hartmut)
24 years ago
Hartmut Holzgraefe
b67b00efcd
getopt() now supports long options on platforms that have getopt_long()
getopt() now working independant of register_argc_argv settings
24 years ago
Hartmut Holzgraefe
ed75204a85
ZTS build fix
24 years ago
Thies C. Arntzen
31e4d62378
#19948
24 years ago
Moriyoshi Koizumi
4eadff2233
More style fixes...
24 years ago
Moriyoshi Koizumi
d953754d74
Let them say why they are skipped
24 years ago
Melvyn Sopacua
b4b26c2f9b
Skip this when strtoupper doesn't behave as expected, because casefolding
depends on this.
24 years ago
foobar
3be17e3f26
- Prevent resetting the PHP_*_DIR variables if already set.
24 years ago
Moriyoshi Koizumi
821349465a
style keisatsu :)
24 years ago
Moriyoshi Koizumi
cee696d9e7
Added a new test case to confirm the inconsistent regex behaviour reported
on php-users@php.gr.jp (10830)
24 years ago
Moriyoshi Koizumi
fe7c6debd9
Changed the dafault option for consistency
24 years ago
Moriyoshi Koizumi
f45231a8ed
Added mb_strtolower() and mb_strtoupper()
@- Added mb_strtolower() and mb_strtoupper(). (Moriyoshi)
24 years ago
foobar
2a81281fd2
Align with other configure --help texts
24 years ago
foobar
e232b212ba
There is no point doing this test. Some systems think root can always execute so this is always true.
24 years ago
Moriyoshi Koizumi
852117694a
Changed mb_regex_set_options() more informative
24 years ago
Derick Rethans
3322581c04
- Only include ftok() if it is available
24 years ago
Derick Rethans
c5a73b31f6
- Remove #ifdefs around ftok function so that it is also available when
none of the IPC extensions are enabled.
24 years ago
Moriyoshi Koizumi
7fb4938981
ZTS fixes
24 years ago
Masaki Fujimoto
a6ecdca0ef
fixed highlight related bugs (in case shift_jis input/output filters are enabled)
24 years ago
Maxim Maletsky
4efcd0f5d1
fixed proto: OCIExecute() returns boolean, not integer
24 years ago
Derick Rethans
11961b1311
- Hopefully fix test file problems
24 years ago
Ilia Alshanetsky
3443f07b3f
Silence compile warning.
24 years ago
Maxim Maletsky
fd04def23b
a silly comment typo
24 years ago
Maxim Maletsky
39afab2039
- fixed proto for OciBindByName to represent the forth parameter optional
24 years ago
foobar
0d98fc6777
--with-zlib-dir has to be defined here to enable phpize build
24 years ago
Wez Furlong
829f1855fd
made fgets() binary safe.
php_stream_gets is now a macro which calls php_stream_get_line. The latter
has an option argument to return the number of bytes in the line.
Functions like fgetcsv(), fgetss() can be made binary safe by calling
php_stream_get_line directly.
# HEADS UP: You will need to make clean after updating your CVS, as the
# binary signature has changed.
24 years ago
Derick Rethans
8998bce403
- Style polizei =)
24 years ago
Marcus Boerger
cda87f7509
Allow ifd start at offset other than 00000007h and provide testcase.
#Now we can read images modified by Exifer.
24 years ago
Yasuo Ohgaki
572b2a5a5a
Revert invalid patch. It seems the real problem is in php error
function(s). It exits with return code -1 when php_error_docref()
is called.
There is custom error handler and without custom error handler,
it is working.
24 years ago
Yasuo Ohgaki
29a53a47f6
Skip field when there is obvious error.
Fixed freeing of wrong zval.
24 years ago
Yasuo Ohgaki
98ab76d23c
Fixed typo.
24 years ago
Ilia Alshanetsky
c3270448ac
Added handling for file:/ schema, which does not contain a host.
24 years ago
foobar
4821b2f301
ws fixes
24 years ago
Ilia Alshanetsky
4b83b189fe
Fixed bug #19971 (optimized the file() function).
The file() function is now also binary safe.
24 years ago
Wez Furlong
9b87199e2a
Improve file().
Patch by Tal Peer <tal@php.net>
24 years ago
Andrei Zmievski
92d61459c0
@- Fixed an infinite loop in setlocale() when only invalid locale names
@ were passed in the array. (patch by Pal Loberg, pallo@initio.no ).
24 years ago
Tal Peer
af3493d30c
Changed fribidi_get_charsets() return value to also include the constant
24 years ago
Yasuo Ohgaki
5693bd4cdf
Added tests for new functions
24 years ago