Anatol Belski
17a57ad980
Fixed bug #65715 php5embed.lib isn't provided anymore
2014-03-24 10:24:37 +01:00
Anatol Belski
f0634b5be5
Merge branch 'PHP-5.5' into PHP-5.6
...
* PHP-5.5:
updated libs_version.txt
Conflicts:
win32/build/libs_version.txt
2014-03-13 10:31:03 +01:00
Anatol Belski
f7b9c12ed9
updated libs_version.txt
2014-03-13 10:28:04 +01:00
Pierre Joye
d2e42d5372
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
fix #66872 , invalid argument crashes gmp_testbit
fix #66872 , invalid argument crashes gmp_testbit
add vc12 (2013)
Conflicts:
win32/build/confutils.js
2014-03-10 12:10:57 +01:00
Pierre Joye
b084157d3d
Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5
...
# By Anatol Belski (38) and others
# Via Anatol Belski (23) and others
* 'PHP-5.5' of git.php.net:php-src: (325 commits)
NEWS
NEWS
Fixed Bug #66820 out-of-bounds memory access in fileinfo
Improves fix for memory leak, keep in sync with upstream.
Fixed news for #60602
Updated news for #60602
proc_open(): separate environment values that aren't strings
Fixed NEWS.
Updated news for #66535 and #66109
Updated NEWS for #66535
don't compare constants on run time
substr_compare(): Allow zero length comparison
Fixed test case title
[bug 66535] X-PHP-Originating-Script adds newline if no custom headers are given
Fixed expected output of a few cURL test cases
Allow NULL as value for CURLOPT_CUSTOMREQUEST option.
man page: long option name is --strip, not --stripped
--global have be removed in 5.2
typo spotted by Lajos Veres
update libs_version.txt
...
2014-03-05 10:37:04 +01:00
Pierre Joye
e590aceb5a
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
...
# By Anatol Belski (22) and others
# Via Derick Rethans (5) and others
* 'PHP-5.4' of git.php.net:php-src: (176 commits)
NEWS
Fixed Bug #66820 out-of-bounds memory access in fileinfo
Improves fix for memory leak, keep in sync with upstream.
Updated news for #60602
proc_open(): separate environment values that aren't strings
Updated NEWS for #66535
Fixed test case title
[bug 66535] X-PHP-Originating-Script adds newline if no custom headers are given
man page: long option name is --strip, not --stripped
--global have be removed in 5.2
NEWS
test for bug #66762
Fixed Bug #66762 Segfault in mysqli_stmt::bind_result() when link closed
fix tests broken by 633f898f15
add news entry
add clear_env option to FPM config
Reduce test noise on cross Oracle client <-> server version tests. This fix is already in PHP 5.6+
Reduce test noise in cross Oracle client <-> server version testing. This change is already in PHP 5.6+
fixed macro
Make sure value is initialized
...
2014-03-05 10:32:42 +01:00
Anatol Belski
9d4adf4fe1
turn off some false positives
2014-03-02 12:49:30 +01:00
Anatol Belski
cf90bd92bf
support for static analyzers other than visual studio
2014-03-01 20:15:10 +01:00
Anatol Belski
0bbacd8678
fix wording
2014-03-01 13:28:02 +01:00
Anatol Belski
7c60a09cae
reveal more info on the configure options
2014-03-01 13:11:35 +01:00
Anatol Belski
603ebc70ff
update libs_version.txt
2014-02-27 09:25:15 +01:00
Anatol Belski
ccd4bf5147
update libs_version.txt
2014-02-27 09:23:48 +01:00
Anatol Belski
10a806ba8f
updated libs_version.txt
2014-02-06 09:15:28 +01:00
Anatol Belski
e41059c633
update libs_version.txt
2014-02-06 09:13:05 +01:00
Anatol Belski
6267c40ac5
updated libs_version.txt
2014-02-06 09:14:30 +01:00
Anatol Belski
e67ef24227
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
fixed missing usleep() prototype in pgsql
2014-01-22 11:53:32 +01:00
Anatol Belski
7bcf01f39a
fixed missing usleep() prototype in pgsql
2014-01-22 11:52:52 +01:00
Anatol Belski
8dd44fee08
fixed glob compilation with vc12
2014-01-20 10:11:31 +01:00
Anatol Belski
379f4c0ceb
support for Visual C+ 2013
2014-01-20 10:04:20 +01:00
Xinchen Hui
c081ce628f
Bump year
2014-01-03 11:08:10 +08:00
Xinchen Hui
47c9027772
Bump year
2014-01-03 11:06:16 +08:00
Xinchen Hui
c0d060f5c0
Bump year
2014-01-03 11:04:26 +08:00
krakjoe
2a1b60569f
Merge branch 'PHP-5.5' into PHP-5.6
...
* PHP-5.5:
stop warnings from unused opcode map
- BFN
- Fixed bug #66311 (Stack smashing protection kills PDO/ODBC queries) patch by: michael at orlitzky dot com
Included new .c file in build too
Fixed little typo in zend_vm_gen.php
Moved to new file, killing a lot of warnings
2013-12-22 13:11:20 +00:00
Bob Weinand
7e3af096b3
Merge branch 'PHP-5.4' into PHP-5.5
...
Conflicts:
Zend/zend_vm_opcodes.c
2013-12-22 00:54:59 +01:00
Bob Weinand
97bf254385
Included new .c file in build too
2013-12-22 00:52:05 +01:00
Dmitry Stogov
af600c240d
Merge branch 'const_scalar_exprs' of github.com:bwoebi/php-src into const_scalar_exprs
...
* 'const_scalar_exprs' of github.com:bwoebi/php-src:
Removed operations on constant arrays. They make no sense as constants are not allowed to be arrays. And as just properties are allowed to; no problem, we still don't need operations on any constant array.
Added a few more operators
Whitespace fix
converted several switches to ifs and made more opcache friendly
Fatal error about self referencing constants fixed
Fixed mem leaks, added tests and ternary operator
Working commit for constant scalar expressions (with constants). Tests will follow.
Conflicts:
Zend/Makefile.am
configure.in
win32/build/config.w32
2013-11-06 15:41:33 +04:00
Anatol Belski
c675980046
Merge branch 'pull-request/500'
...
* pull-request/500:
limit virtual_cwd_activate() duplicated call to ZTS only
reverted the previous commit, both calls are needed in TS mode
virtual_cwd_activate() should be called only in one place
back to do_alloca()
removed unnecessary call
simplify the state free macros
compact the code to preserve the error info after state freeing
back to do_alloca(), reverted the wrong replacement
enabled windows to use stack in both ts/nts mode, some more fixes
moved to do_alloca() usage where appropriate
fixed invalid free
fixed virtual cwd header in phar
updated NEWS
fixed all the places where last error could be lost
preserve the error code
applied and fixed the original patch
initial move on renaming files and fixing includes
Conflicts:
ext/opcache/ZendAccelerator.c
2013-11-05 19:23:23 +01:00
Pierre Joye
fb3e21fbcc
add vc12 (2013)
2013-11-04 22:25:50 +01:00
Pierre Joye
9b54901ffb
add vc12 (2013)
2013-11-04 22:19:02 +01:00
Bob Weinand
2361745806
Working commit for constant scalar expressions (with constants).
...
Tests will follow.
2013-10-31 08:57:12 +01:00
Anatol Belski
4295bfeeaf
Merge branch 'PHP-5.5'
...
* PHP-5.5:
updated libs_versions.txt
2013-10-29 13:35:38 +01:00
Anatol Belski
5f1cbfacf9
updated libs_versions.txt
2013-10-29 13:35:02 +01:00
Anatol Belski
e30b2aae5a
initial move on renaming files and fixing includes
2013-10-17 09:43:52 +02:00
Felipe Pena
eed5d9cc5f
Merge branch 'PHP-5.5'
...
* PHP-5.5:
- Fixed possible memory leak
2013-10-12 18:06:39 -03:00
Felipe Pena
62a8305007
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
- Fixed possible memory leak
2013-10-12 18:06:27 -03:00
Felipe Pena
960b4e81f3
- Fixed possible memory leak
2013-10-12 18:06:20 -03:00
Anatol Belski
86dfe7be49
better way to fix PRIu64 availability on windows
2013-09-18 15:14:36 +02:00
Anatol Belski
82bb2a2535
Merge branch 'PHP-5.5'
...
* PHP-5.5:
removed the /Wp64 switch as we use true 64 bit compiler now
2013-08-28 15:10:42 +02:00
Anatol Belski
bd677b43a7
removed the /Wp64 switch as we use true 64 bit compiler now
2013-08-28 15:10:05 +02:00
Anatol Belski
3745bdadc0
updated lib versions
2013-08-28 14:43:00 +02:00
Anatol Belski
8cc1ee8c81
Merge branch 'PHP-5.5'
...
* PHP-5.5:
updated lib versions, the vc11 ones only matter now
2013-08-28 14:30:03 +02:00
Anatol Belski
51016262a7
updated lib versions, the vc11 ones only matter now
2013-08-28 14:25:39 +02:00
Anatol Belski
1673e8f67e
Merge branch 'PHP-5.5'
...
* PHP-5.5:
Fixed bug #65268 select() implementation uses outdated tick API
2013-07-18 18:02:26 +02:00
Anatol Belski
99afc6dc11
Fixed bug #65268 select() implementation uses outdated tick API
2013-07-18 18:01:51 +02:00
Stanislav Malyshev
e92a63c9ee
Merge branch 'PHP-5.5'
...
* PHP-5.5:
Remove PWS (Personal Web Server) references
2013-07-15 00:38:50 -07:00
Bruno CHALOPIN
2ec7b1c388
Remove PWS (Personal Web Server) references
2013-07-15 00:38:29 -07:00
Veres Lajos
e9a95d78ef
typo fixes
2013-07-15 00:23:03 -07:00
Veres Lajos
1b06e0be96
typo fixes
2013-07-15 00:19:49 -07:00
Veres Lajos
72085b0e5f
typo fixes
2013-07-15 00:18:57 -07:00
Anatol Belski
c7490a6edd
add usleep() to the header, already exported to dll
2013-07-10 16:16:33 +02:00
Stanislav Malyshev
02e4d7a290
Merge branch 'pull-request/341'
...
* pull-request/341: (23 commits)
typofixes
2013-06-10 14:30:59 -07:00
Stanislav Malyshev
ac40c0b562
Merge branch 'pull-request/341'
...
* pull-request/341: (23 commits)
typofixes
2013-06-10 14:20:18 -07:00
Stanislav Malyshev
84e35fb2e0
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
typo fixes (argument)
typo fixes (accommodate, parameter)
2013-06-10 13:36:41 -07:00
Veres Lajos
ed2e84e239
typo fixes (accommodate, parameter)
2013-06-10 13:36:03 -07:00
Anatol Belski
e3aeb6c070
updated lib versions
2013-05-01 21:37:28 +02:00
Anatol Belski
8febe2ad08
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Fixed stream_socket_pair() on Windows x64 and
2013-04-22 18:59:11 +02:00
Anatol Belski
f082d6311b
Fixed stream_socket_pair() on Windows x64 and
...
improved errorhandling in the socketpair() implementation.
2013-04-22 18:55:32 +02:00
Anatol Belski
f578bb0388
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
updated NEWS
Fixed stream_socket_pair() on Windows x64 and
2013-04-22 19:00:13 +02:00
Anatol Belski
ca425a67c4
updated lib versions
2013-04-17 13:20:23 +02:00
Anatol Belski
fb955a613c
updated lib versions
2013-04-17 13:17:32 +02:00
Anatol Belski
4fbe1173eb
fixed EOL
2013-04-17 13:15:08 +02:00
Anatol Belski
323fdb9879
updated lib versions
2013-04-17 13:12:18 +02:00
Anatol Belski
2e00f7611c
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
Fixed possible precision loss in microtime
2013-03-23 17:48:05 +01:00
Anatol Belski
3654ff7366
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Fixed possible precision loss in microtime
2013-03-23 17:47:39 +01:00
Anatol Belski
b022e54bd1
Fixed possible precision loss in microtime
...
This is related to the fix for bug #64370 . MSVC natively supports __int64 type,
so calculating with 32 bit ints is neither necessary nor reliable. Therefore
an older piece of code is reused.
2013-03-23 17:40:06 +01:00
Anatol Belski
90c8f16c3b
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Backported patch for #64370
2013-03-15 19:08:32 +01:00
Anatol Belski
b903d2d6cd
Backported patch for #64370
2013-03-15 19:04:40 +01:00
Anatol Belski
8aaa09636a
Fixed bug #64370 (microtime(true) less than $_SERVER['REQUEST_TIME_FLOAT'])
2013-03-11 16:04:37 +01:00
Ralph Schindler
ac73ca6db4
Fix for https://bugs.php.net/bug.php?id=62649
2013-03-07 23:20:11 +01:00
Anatol Belski
22ae9efe6e
added back the older vc9 favours
2013-02-21 10:59:50 +01:00
Anatol Belski
27f8944eaa
updated lib versions
2013-02-21 10:32:56 +01:00
Anatol Belski
bae95bd9d4
updated lib versions
2013-02-21 10:27:37 +01:00
Anatol Belski
81e9aa6c8d
updated lib versions
2013-02-21 09:46:50 +01:00
Gustavo Lopes
8561680533
Remove some pre-vista code
2013-02-02 16:38:09 +01:00
Dmitry Stogov
52dd0d1c73
Merge branch 'PHP-5.4' into PHP-5.5
...
* PHP-5.4:
Fixed uninitialized zval.type (Yoram)
2013-01-10 18:54:37 +04:00
Dmitry Stogov
046ae2f77c
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Fixed uninitialized zval.type (Yoram)
2013-01-10 18:54:19 +04:00
Dmitry Stogov
e1410b5a70
Fixed uninitialized zval.type (Yoram)
2013-01-10 18:53:10 +04:00
Xinchen Hui
a666285bc2
Happy New Year
2013-01-01 16:37:09 +08:00
Xinchen Hui
0a7395e009
Happy New Year
2013-01-01 16:28:54 +08:00
Xinchen Hui
a2045ff332
Happy New Year~
2013-01-01 16:02:16 +08:00
Sebastian Bergmann
eab14993fe
Invoke re2c with --no-generation-date to prevent unintentional / unnecessary changes in generated files.
2012-12-06 09:28:35 +01:00
Xinchen Hui
6284ef112e
Fixed bug #63236 (Executable permission on various source files)
2012-10-09 13:28:31 +08:00
Xinchen Hui
e4a8fa6a15
Merge branch 'PHP-5.3' into PHP-5.4
2012-10-09 13:29:51 +08:00
Xinchen Hui
75a2c0d715
Merge branch 'PHP-5.4'
2012-10-09 13:30:22 +08:00
Anatoliy Belsky
a9d727e180
Merge branch 'PHP-5.4'
...
* PHP-5.4:
updated lib versions
Fix folding
2012-09-21 09:59:01 +02:00
Anatoliy Belsky
6c1f5eb215
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
updated lib versions
2012-09-21 09:58:16 +02:00
Anatoliy Belsky
d59c1371c2
updated lib versions
2012-09-21 09:57:22 +02:00
Anatoliy Belsky
7be5e7539c
Merge branch 'PHP-5.4'
...
* PHP-5.4:
updated libary versions
2012-09-18 10:20:47 +02:00
Anatoliy Belsky
1e1db9d9bb
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
updated libary versions
Conflicts:
win32/build/libs_version.txt
2012-09-18 10:20:05 +02:00
Anatoliy Belsky
6752f38ccc
updated libary versions
2012-09-18 10:18:26 +02:00
unknown
80a2f2f68e
Merge branch 'PHP-5.4'
...
* PHP-5.4:
-enable VC11 (vc2012)
2012-09-08 18:48:32 +02:00
unknown
cea7f09043
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
-enable VC11 (vc2012)
2012-09-08 18:47:32 +02:00
unknown
dabe89c6f3
-enable VC11 (vc2012)
2012-09-08 18:46:33 +02:00
Xinchen Hui
63d9c1f40b
Merge branch 'PHP-5.4'
...
Conflicts:
sapi/litespeed/lsapi_main.c
2012-09-05 23:20:42 +08:00
Xinchen Hui
9d44ff640c
Merge branch 'PHP-5.3' into PHP-5.4
...
Conflicts:
ext/interbase/interbase.rc
2012-09-05 23:11:19 +08:00
Xinchen Hui
d64d9e3351
year++
2012-09-05 23:08:05 +08:00
Gustavo Lopes
53351d087d
Merge branch 'generators'
...
* generators: (70 commits)
Fix typos
Fix segfault when traversing a by-ref generator twice
Make sure that exception is thrown on rewind() after closing too
Remove implementation stubs for yield delegation
Fix several issues and allow rewind only at/before first yield
Run finally if generator is closed before finishing
Finally with return now works in generators too
Add dedicated opcode for returns from a generator
Disallow serialization and unserialization
Fix zts build (typo)
Drop Generator::close() method
Forgot to add test
Support trivial finally in generators (no yield, no return)
Fix implementation of Iterator interface
Add T_YIELD in tokenizer_data.c
Throw error also for return occuring before yield
Fix throwing of exceptions within a generator
Remove reference restrictions from foreach
Require parenthesis around yield expressions
Add some more tests
...
2012-09-01 19:07:20 +02:00
Felipe Pena
5e51209785
Merge branch 'PHP-5.4'
...
* PHP-5.4:
- Fixed bug #62955 (Only one directive is loaded from "Per Directory Values" Windows registry)
2012-08-30 09:32:34 -03:00
Felipe Pena
eb8d603d46
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
- Fixed bug #62955 (Only one directive is loaded from "Per Directory Values" Windows registry)
2012-08-30 09:32:26 -03:00
Felipe Pena
de884997e0
- Fixed bug #62955 (Only one directive is loaded from "Per Directory Values" Windows registry)
2012-08-30 09:32:13 -03:00
Anatoliy Belsky
747d2f8417
Merge branch 'PHP-5.4'
...
* PHP-5.4:
updated mpir version
Fixed defective cloning in ext/intl classes
2012-08-29 17:56:42 +02:00
Anatoliy Belsky
677de8568a
updated mpir version
2012-08-29 17:49:02 +02:00
Nikita Popov
f4ce364628
Merge remote-tracking branch 'php-src/master' into addGeneratorsSupport
...
This is just an intial merge. It does not yet make generators and finally
work together.
Conflicts:
Zend/zend_language_scanner.c
Zend/zend_language_scanner_defs.h
Zend/zend_vm_def.h
Zend/zend_vm_execute.h
Zend/zend_vm_execute.skl
Zend/zend_vm_opcodes.h
2012-08-13 16:54:53 +02:00
Andrew Faulds
d12f8d6790
Removed Logo GUIDs and replaced with Data URIs and div hidden with JS
...
- removed php_logo_guid()
- removed php_egg_logo_guid()
- removed php_real_logo_guid()
- removed zend_logo_guid()
- removed logo GUID handling
- removed logo GUIDs from source
- added logo data URIs instead for phpinfo()
- added credits to phpinfo() page, but hidden by default
2012-07-14 21:44:21 +01:00
Xinchen Hui
07d0eab204
Merge branch 'PHP-5.4'
...
By Gustavo André dos Santos Lopes (4) and others
via Felipe Pena (2) and Xinchen Hui (2)
* PHP-5.4:
Remove unused codes
based on microsoft's description,the direct convert from FILETIME struct to __int64 is unsafe.
merge 5.3 entries
restore NEWS
Fix ext/intl build on ICU < 4.8
Optimization in ext/intl/msgformat
Fixed tests in ext/intl
Changed XFAILed collator_get_sort_key.phpt
2012-06-07 14:42:35 +08:00
Xinchen Hui
83542dcf3b
Merge branch 'PHP-5.3' into PHP-5.4
...
By Gustavo André dos Santos Lopes (4) and others
via Felipe Pena (1) and Xinchen Hui (1)
* PHP-5.3:
Remove unused codes
based on microsoft's description,the direct convert from FILETIME struct to __int64 is unsafe.
Fix ext/intl build on ICU < 4.8
Optimization in ext/intl/msgformat
Fixed tests in ext/intl
Changed XFAILed collator_get_sort_key.phpt
2012-06-07 14:32:47 +08:00
Xinchen Hui
6ecc9f1d9d
Remove unused codes
2012-06-07 14:31:35 +08:00
slayercat
d9810af45a
based on microsoft's description,the direct convert from FILETIME struct to __int64 is unsafe.
...
via http://technet.microsoft.com/en-us/library/ms724284(v=vs.85).aspx
"Do not cast a pointer to a FILETIME structure to either a
ULARGE_INTEGER* or __int64* value because it can cause alignment faults on 64-bit Windows."
2012-06-07 14:28:05 +08:00
Nikita Popov
ca59e5464d
Add empty Generator class
2012-05-20 00:03:27 +02:00
Felipe Pena
42faa077f9
Merge branch 'PHP-5.4'
...
* PHP-5.4:
- Fixed bug #55299 (multiple null pointer in win32/registry.c)
2012-05-16 08:40:53 -03:00
Felipe Pena
1abcd81872
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
- Fixed bug #55299 (multiple null pointer in win32/registry.c)
2012-05-16 08:40:45 -03:00
Felipe Pena
93c91c733c
- Fixed bug #55299 (multiple null pointer in win32/registry.c)
2012-05-16 08:40:12 -03:00
Anatoliy Belsky
257d0b5566
Merge branch 'PHP-5.4'
...
* PHP-5.4:
Fix bug #61990 ext\spl\examples\tests\dualiterator_001.phpt fails
2012-05-11 14:39:29 +02:00
Anatoliy Belsky
4458f3bcf6
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Fix bug #61990 ext\spl\examples\tests\dualiterator_001.phpt fails
2012-05-11 14:38:43 +02:00
Anatoliy Belsky
81ba6b14c7
Fix bug #61990 ext\spl\examples\tests\dualiterator_001.phpt fails
...
This fixes a general issue. In this ticket and not for the first time
is being seen, that people are trying to use data from "examples"
in the tests. When extracting a test pack only "tests" and its siblings
was taken into account. Now "examples" are copied as well.
2012-05-11 14:24:12 +02:00
Johannes Schlüter
c62a41860e
Merge branch 'PHP-5.4'
...
* PHP-5.4:
Rename README.SVN-RULES to README.GIT-RULES, here, too
2012-04-14 00:31:29 +02:00
Johannes Schlüter
6ecac26972
Merge branch 'PHP-5.3' into PHP-5.4
...
* PHP-5.3:
Rename README.SVN-RULES to README.GIT-RULES, here, too
2012-04-14 00:31:00 +02:00
Johannes Schlüter
21d314a767
Rename README.SVN-RULES to README.GIT-RULES, here, too
2012-04-14 00:29:55 +02:00
Pierre Joye
69e0e03457
- update to openssl 0.9.8u
2012-04-02 13:09:19 +02:00
Pierre Joye
55a6f3a12d
- update to openssl 0.9.8u
2012-04-02 13:07:59 +02:00
Pierre Joye
45416cbe56
- update to openssl 0.9.8u
2012-04-02 13:06:44 +02:00
Pierre Joye
2c43149f21
- fix bug #61290 , fix build
2012-03-05 20:53:40 +00:00
Pierre Joye
d1f7d3c8a9
- fix bug #61290 , fix build
2012-03-05 20:53:40 +00:00
Pierre Joye
3a24a0b76e
- fix bug #54407 , Incorrectly defined NTDDI_VERSION macro
2012-03-04 22:15:12 +00:00
Pierre Joye
ad8474c578
- fix bug #54407 , Incorrectly defined NTDDI_VERSION macro
2012-03-04 22:15:12 +00:00
Pierre Joye
d85cc4a1a1
- fix bug #54407 , Incorrectly defined NTDDI_VERSION macro
2012-03-04 15:23:24 +00:00
Pierre Joye
bda5ea7111
- fix bug #54407 , Incorrectly defined NTDDI_VERSION macro
2012-03-04 15:23:24 +00:00
Pierre Joye
94994104a5
- bump minimum version, no more XP/2003
2012-03-04 15:08:12 +00:00
Pierre Joye
e31a457c72
- libssh2 1.3.0
2012-01-30 11:04:19 +00:00
Pierre Joye
90321eaa98
- libssh2 1.3.0
2012-01-30 11:04:19 +00:00
Pierre Joye
7053fe29ea
- libssh2 1.3.0
2012-01-30 11:04:19 +00:00
Pierre Joye
614c22e105
- update libs
2012-01-27 17:35:01 +00:00
Pierre Joye
f75f11857c
- update libs
2012-01-27 17:35:01 +00:00
Pierre Joye
544e36dfff
- update libs
2012-01-27 17:35:01 +00:00
Pierre Joye
499bb11887
- update libs
2012-01-27 17:31:17 +00:00
Pierre Joye
9c948ad564
- update libs
2012-01-27 17:31:17 +00:00
Pierre Joye
52697bcfd3
- update libs
2012-01-27 17:31:17 +00:00
Pierre Joye
7e865a1555
- update libs
2012-01-27 13:27:03 +00:00
Pierre Joye
2e1e20b69b
- update libs
2012-01-27 13:27:03 +00:00
Pierre Joye
d762f04dd8
- update libs
2012-01-27 13:27:03 +00:00
Pierre Joye
d54710ae2f
- fix #60895 , possible invalid handler usage
2012-01-27 10:56:33 +00:00
Pierre Joye
4879a01b54
- fix #60895 , possible invalid handler usage
2012-01-27 10:56:33 +00:00
Pierre Joye
1e462057cd
- fix #60895 , possible invalid handler usage
2012-01-27 10:56:33 +00:00
Pierre Joye
07cf07df61
- openssl 0.9.8t, curl 7.24.0
2012-01-26 12:11:02 +00:00
Pierre Joye
d997e578b7
- openssl 0.9.8t, curl 7.24.0
2012-01-26 12:11:02 +00:00
Pierre Joye
9fa30bf52b
- openssl 0.9.8t, curl 7.24.0
2012-01-26 12:11:02 +00:00
Pierre Joye
993992d6db
- add new build type, optional. has been used for the last 2 RCs
2012-01-11 15:47:37 +00:00
Pierre Joye
612e73b00b
- add new build type, optional. has been used for the last 2 RCs
2012-01-11 15:46:45 +00:00
Pierre Joye
92120997c9
- add new build type, optional. has been used for the last 2 RCs
2012-01-11 15:46:45 +00:00
Pierre Joye
96e02805fb
- spl tests are also under examples (sigh)
2012-01-09 13:56:46 +00:00
Pierre Joye
7f2c8b347c
- spl tests are also under examples (sigh)
2012-01-09 13:56:46 +00:00
Pierre Joye
f6a7b27198
- spl tests are also under examples (sigh)
2012-01-09 13:56:46 +00:00
Felipe Pena
e4ca0ed09f
- Year++
2012-01-01 13:15:04 +00:00
Felipe Pena
8775a37559
- Year++
2012-01-01 13:15:04 +00:00
Felipe Pena
4e19825281
- Year++
2012-01-01 13:15:04 +00:00
Pierre Joye
4e03e70575
- copy run-test php
2011-12-12 15:10:40 +00:00
Pierre Joye
9cfc56d445
- copy run-test php
2011-12-12 15:09:52 +00:00
Pierre Joye
cb4b1616b7
- copy run-test php
2011-12-12 15:09:52 +00:00
Pierre Joye
bb78412b07
- update libcurl to 7.21.7
2011-08-03 13:19:03 +00:00
Pierre Joye
38cb153c42
- update libcurl to 7.21.7
2011-08-03 13:19:03 +00:00
Pierre Joye
ab38726a59
- update libcurl to 7.21.7
2011-08-03 13:19:03 +00:00
Pierre Joye
9805e1674a
- remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ
2011-07-22 11:25:30 +00:00
Pierre Joye
cc1c7af037
- remove magic quotes support, functions are kept (see the NEWS entry for the details) for BC reasons but do not allow to set enable MQ
2011-07-22 11:25:30 +00:00
Pierre Joye
e825d1b579
- update libpng to 1.2.46
2011-07-19 10:22:42 +00:00
Pierre Joye
eccc017ab5
- update libpng to 1.2.46
2011-07-19 10:22:42 +00:00
Pierre Joye
101a9ee4e2
- update libpng to 1.2.46
2011-07-19 10:22:42 +00:00
Pierre Joye
58b7766aec
- not a good idea after all and did not do what I thought it should do
2011-07-18 12:00:08 +00:00
Pierre Joye
3c323a5d6d
- not a good idea after all and did not do what I thought it should do
2011-07-18 12:00:08 +00:00
Pierre Joye
731029a672
- fix decl
2011-07-14 10:54:39 +00:00
Pierre Joye
cf9aaf22ce
- fix decl
2011-07-14 10:54:39 +00:00
Pierre Joye
1655d6d4c7
- bind to the available crt version
2011-07-13 06:42:39 +00:00
Pierre Joye
29b47bbff4
- bind to the available crt version
2011-07-13 06:42:39 +00:00
Pierre Joye
b8251d54a8
- Bug #55169 , improve fix, allow non interactive user, hash-like ops only usage
2011-07-12 11:46:41 +00:00
Pierre Joye
96b5e69889
- Bug #55169 , improve fix, allow non interactive user, hash-like ops only usage
2011-07-12 11:46:41 +00:00
Pierre Joye
76285595b4
- Bug #55169 , improve fix, allow non interactive user, hash-like ops only usage
2011-07-12 11:46:41 +00:00
Pierre Joye
5d5951f247
- fix bug #55169 , mcrypt_create_iv always fails to gather sufficient random data
2011-07-10 14:36:32 +00:00
Pierre Joye
04432e7dd8
- fix bug #55169 , mcrypt_create_iv always fails to gather sufficient random data
2011-07-10 14:36:32 +00:00
Pierre Joye
4276fd63b5
- fix bug #55169 , mcrypt_create_iv always fails to gather sufficient random data
2011-07-10 14:36:32 +00:00
Pierre Joye
6ff1746371
- update libpng to 1.2.45
2011-07-10 02:20:34 +00:00
Pierre Joye
c6396dd9de
- update libpng to 1.2.45
2011-07-10 02:20:34 +00:00
Pierre Joye
c43276abd6
- fix nts build
2011-06-16 10:20:25 +00:00
Pierre Joye
25849ab967
- fix nts build
2011-06-16 10:20:25 +00:00
Pierre Joye
0ff4d7d811
- fix nts build
2011-06-16 10:20:25 +00:00
Pierre Joye
358316b2ed
- init win32 rng context once per process
2011-06-16 01:31:10 +00:00
Pierre Joye
23c4c46b36
- init win32 rng context once per process
2011-06-16 01:31:10 +00:00
Pierre Joye
1d357d964c
- init win32 rng context once per process
2011-06-16 01:31:10 +00:00
Pierre Joye
221a07b669
- initial import, will add all libs later
2011-05-19 13:36:29 +00:00
Pierre Joye
1920f5a690
- initial import, will add all libs later
2011-05-19 13:36:29 +00:00
Pierre Joye
1e2aa4416c
- initial import, will add all libs later
2011-05-19 13:36:29 +00:00
Pierrick Charron
1368364469
Fix common typos in the source code (Reported in Bug #54065 )
...
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
2011-04-03 21:46:52 +00:00
Pierrick Charron
e8486cc374
Fix common typos in the source code (Reported in Bug #54065 )
...
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
2011-04-03 21:46:52 +00:00
Pierre Joye
0625b3882d
- re enable static analyzer, crash fixed with snapshot builds
2011-03-28 10:55:34 +00:00
Pierre Joye
4ad6108b7d
- re enable static analyzer, crash fixed with snapshot builds
2011-03-28 10:55:34 +00:00
Moriyoshi Koizumi
a497999481
- Merge from trunk.
2011-03-02 18:35:10 +00:00
Moriyoshi Koizumi
f093c7db8d
- Enable windows build system to accept paths containing spaces.
2011-03-02 05:22:22 +00:00
Pierre Joye
afb36bb4eb
- missing
2011-02-10 21:42:13 +00:00
Pierre Joye
628e946411
- missing
2011-02-10 21:40:50 +00:00
Pierre Joye
555e42fb5a
- disable realloc warning about not checking its return value, 100% valid but way too many of them for now, reduce noises
2011-02-07 10:17:14 +00:00
Pierre Joye
312235cdac
- disable realloc warning about not checking its return value, 100% valid but way too many of them for now, reduce noises
2011-02-07 10:17:14 +00:00
Pierre Joye
0297128ace
- xp sp3 does not have them
2011-01-19 19:48:28 +00:00
Pierre Joye
1ec3ec1326
-disable the analyzer for the snapshot in 5.3 too
2011-01-13 19:44:00 +00:00
Pierre Joye
f9c61024a5
- do not enable analyzer for snapshot
2011-01-10 21:04:50 +00:00
Pierre Joye
639d3fbcfb
- possible NULL deref
2011-01-10 08:07:38 +00:00
Pierre Joye
f25ab1bf9c
- possible NULL deref
2011-01-10 08:07:38 +00:00
Pierre Joye
10a1f90ab0
- local redeclaration
2011-01-10 01:04:36 +00:00
Pierre Joye
f45b9c4a0b
- local redeclaration
2011-01-10 01:04:36 +00:00
Pierre Joye
eddd9b7510
- new sec flags should not be on by default for 5.3, yet
2011-01-09 21:41:54 +00:00
Pierre Joye
eda798fd7a
- add configure option to enable the builtin static analyzer (will be enabled for snaps' log)
2011-01-09 21:38:46 +00:00
Pierre Joye
0d3c6914ad
- add configure option to enable the builtin static analyzer (will be enabled for snaps' log)
2011-01-09 21:38:46 +00:00
Pierre Joye
92894b3a81
- debug code--
2011-01-09 15:19:03 +00:00
Pierre Joye
7c6310852e
- let try to fix pecl header install so we can do the same than unix, install them in ext/<extname> instead of pecl<extname>
2011-01-09 14:01:21 +00:00
Pierre Joye
fb6778c241
- let try to fix pecl header install so we can do the same than unix, install them in ext/<extname> instead of pecl<extname>
2011-01-09 14:01:21 +00:00
Pierre Joye
f3a4bfee8f
- enable ASLR and NXCOMPAT by default
2011-01-07 20:50:33 +00:00
Pierre Joye
55077a81f5
- define the php*.lib/dll names
2011-01-07 15:51:36 +00:00
Pierre Joye
cc6bb66dcd
- define the php*.lib/dll names
2011-01-07 15:51:36 +00:00
Pierre Joye
84b854a603
- revert rev. 307044
2011-01-05 00:59:31 +00:00
Pierre Joye
09d73b67e2
- revert rev. 307044
2011-01-05 00:59:31 +00:00
Kalle Sommer Nielsen
ec040e9657
Fixed linking of extensions that would use a static .lib file (libname_a.lib rather than libname.lib)
...
# This fixes `configure --with-mcrypt=shared' to properly find and
# link against libmcrypt.lib rather than libmcrypt_a.lib
2011-01-03 23:08:47 +00:00
Kalle Sommer Nielsen
79b997d7ba
Fixed linking of extensions that would use a static .lib file (libname_a.lib rather than libname.lib)
...
# This fixes `configure --with-mcrypt=shared' to properly find and
# link against libmcrypt.lib rather than libmcrypt_a.lib
2011-01-03 23:08:47 +00:00
Pierre Joye
b059dfa1e7
- prevent php(version)lib.(dll|lib) to be overriden
2011-01-03 01:22:07 +00:00
Pierre Joye
e9bb7bbbd1
- missing file
2011-01-03 01:22:00 +00:00
Pierre Joye
b4ae112dae
- we need the core config.w32 only once
2011-01-03 01:08:21 +00:00
Pierre Joye
7444576047
- we need the core config.w32 only once
2011-01-03 01:08:21 +00:00
Pierre Joye
f7176f9cf0
- silent copy
2011-01-03 01:07:28 +00:00
Pierre Joye
bfb9b6d06e
- use the ext deps list for phpize's ADD_EXTENSION_DEP function
2011-01-02 18:29:56 +00:00
Pierre Joye
17d05d0d57
- use the ext deps list for phpize's ADD_EXTENSION_DEP function
2011-01-02 18:29:56 +00:00
Pierre Joye
ec3003ade1
- typo, and remove undesired committed part
2011-01-02 18:14:50 +00:00
Pierre Joye
6008152caa
- typo
2011-01-02 18:13:20 +00:00
Pierre Joye
5bd1fd410f
- typo
2011-01-02 18:13:20 +00:00
Pierre Joye
163780af56
- generate a list of ext and how they are built, should be updated by phpize'd make (un)install as well, later
2011-01-02 18:03:00 +00:00
Pierre Joye
f62ca3e4bf
- generate a list of ext and how they are built, should be updated by phpize'd make (un)install as well, later
2011-01-02 18:03:00 +00:00
Pierre Joye
e13c26a141
- fix ADD_EXTENSION_DEP detection
2011-01-01 20:00:21 +00:00
Pierre Joye
97c5d74d78
- missing file
2011-01-01 20:00:10 +00:00
Felipe Pena
927bf09c29
- Year++
2011-01-01 02:19:59 +00:00
Felipe Pena
0203cc3d44
- Year++
2011-01-01 02:17:06 +00:00
Pierre Joye
c4f631b275
- we don't bundled fbclient, system version is used
2010-12-15 02:01:21 +00:00
Pierre Joye
18deebed4b
- we don't bundled fbclient, system version is used
2010-12-15 02:01:21 +00:00
Pierre Joye
c05b1228db
- typo
2010-12-15 00:39:07 +00:00
Pierre Joye
b25ded66ea
- sync with 5.3
2010-12-14 23:21:53 +00:00
Pierre Joye
f56ab54feb
- devel must be done before dist
2010-12-14 23:21:01 +00:00
Pierre Joye
f7b5a73383
- fix build with out of src obj dir
2010-12-14 23:09:31 +00:00
Pierre Joye
e2ea0f5d98
- we just reached the tiny cmd lenght limit, let reduce the size of dirs
2010-12-14 18:49:15 +00:00
Pierre Joye
e79ed6359d
- add nmake install-sdk (create the devel package) and related sub rules
2010-12-14 02:55:26 +00:00
Pierre Joye
d14417f8ea
- add nmake install-sdk (create the devel package) and related sub rules
2010-12-14 02:55:26 +00:00
Pierre Joye
12a3e339f4
- MFH trailing slashes detection
2010-12-13 20:57:06 +00:00
Pierre Joye
31f97e2440
- no need to diplay that
2010-12-13 20:56:44 +00:00
Pierre Joye
4df03c1ded
- phpize support merge from 5.3
2010-12-13 20:55:13 +00:00
Kalle Sommer Nielsen
15ee70e8e0
* Don't print the shared headers table after enabling each extension (cleaner configure output)
...
* Fix double slashes for directory targets in PHP_INSTALL_HEADERS()
2010-12-13 20:46:57 +00:00
Pierre Joye
aea6771d19
- add phpize support for windows, need a nmake install for now (nmake devel-pkg version is coming), works exactly the same as on unix, or should :)
2010-12-13 18:43:10 +00:00
Pierre Joye
a7ffa09e18
- add PHP_INSTALL_HEADERS to all parts (core&exts) exposing headers, generate the install-headers cmd
2010-12-11 22:18:10 +00:00