Hello Jani,
we have .re files that are being generated only manually. For one instance
look into date lib.
best regards
marcus
Thursday, June 7, 2007, 2:41:10 AM, you wrote:
> What do you mean with "not all .re files have rules" ??
> --Jani
> Marcus Boerger kirjoitti:
>> Hello Nuno,
>>
>>
stasWed Jun 6 17:46:17 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
fix test format
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?r1=1.1.2.1&r2=1.1.2.2&diff_format
iliaa Thu Jun 7 02:29:44 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/ncursesncurses_functions.c
Log:
Fixed a crash inside ncurses_panel_above() when called prior to
ncurses_init()
http://cvs.php.net/viewvc.cgi/php-src/ext/ncurses/ncurs
iliaa Thu Jun 7 02:21:55 2007 UTC
Modified files:
/php-src/ext/date php_date.c
Log:
Fixed typo
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.138&r2=1.139&diff_format=u
Index: php-src/ext/date/php_date.c
diff -u php-src/ext/date/php_date.
iliaa Thu Jun 7 02:21:26 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/date php_date.c
Log:
Fixed typo
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.43.2.45.2.47&r2=1.43.2.45.2.48&diff_format=u
Index: php-src/ext/date/php_date.c
The problem is that N is a double and gcc does not like doing % on
doubles, at least if the compiler error is to be believed.
On 6-Jun-07, at 9:12 PM, Stanislav Malyshev wrote:
I suspect you meant something different here. shouldn't it be:
N -= floor(N/24)*24
in both cases?
BTW, just out o
I suspect you meant something different here. shouldn't it be:
N -= floor(N/24)*24
in both cases?
BTW, just out of curiosity - which compilers can't do % and need floor?
--
Stanislav Malyshev, Zend Products Engineer
[EMAIL PROTECTED] http://www.zend.com/
--
PHP CVS Mailing List (http://www.p
What do you mean with "not all .re files have rules" ??
--Jani
Marcus Boerger kirjoitti:
Hello Nuno,
not all .re files have rules. MAybe we could collect the .re files in the
buildconf or configure process and automatically generate a makefile
target re2c if re2c is available. This rulesset
I suspect you meant something different here. shouldn't it be:
N -= floor(N/24)*24
in both cases?
#include "php.h"
#include "php_streams.h"
@@ -2329,9 +2329,9 @@
N = (calc_sunset ? h_set : h_rise) + gmt_offset;
if (N > 24) {
- N %= 24;
+ N -= floor(N
iliaa Wed Jun 6 23:16:45 2007 UTC
Modified files:
/php-src/ext/date php_date.c
Log:
MFB: Adjust previous patch to work on all compilers
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.137&r2=1.138&diff_format=u
Index: php-src/ext/date/php_
iliaa Wed Jun 6 23:16:34 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/date php_date.c
Log:
Adjust previous patch to work on all compilers
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.43.2.45.2.46&r2=1.43.2.45.2.47&diff_form
iliaa Wed Jun 6 22:58:53 2007 UTC
Modified files:
/php-src/ext/date php_date.c
Log:
MFB: Optimize out a loop
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.136&r2=1.137&diff_format=u
Index: php-src/ext/date/php_date.c
diff -u php-src/e
iliaa Wed Jun 6 22:58:42 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/date php_date.c
Log:
Optimize out a loop
http://cvs.php.net/viewvc.cgi/php-src/ext/date/php_date.c?r1=1.43.2.45.2.45&r2=1.43.2.45.2.46&diff_format=u
Index: php-src/ext/date/p
sniper Wed Jun 6 22:41:23 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
Log:
fix news
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.766&r2=1.2027.2.547.2.767&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.766
stasWed Jun 6 22:25:08 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings pack.phpt
Log:
revert - already have unpack.phpt
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/pack.phpt?r1=1.1.2.5&r2=1.1.2.6&diff_fo
stasWed Jun 6 22:21:59 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings pack.phpt
Log:
add edge case test
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/pack.phpt?r1=1.1.2.4&r2=1.1.2.5&diff_format=u
Index: p
tony2001Wed Jun 6 22:09:25 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/bcmath bcmath.c
Log:
MFH: improve the checks for integer overflow
http://cvs.php.net/viewvc.cgi/php-src/ext/bcmath/bcmath.c?r1=1.62.2.2.2.6&r2=1.62.2.2.2.7&diff_format=
tony2001Wed Jun 6 22:08:53 2007 UTC
Modified files:
/php-src/ext/bcmath bcmath.c
Log:
improve the checks
http://cvs.php.net/viewvc.cgi/php-src/ext/bcmath/bcmath.c?r1=1.71&r2=1.72&diff_format=u
Index: php-src/ext/bcmath/bcmath.c
diff -u php-src/ext/bc
iliaa Wed Jun 6 22:04:47 2007 UTC
Modified files:
/php-src/ext/standard/tests/strings unpack.phpt
/php-src/ext/standard pack.c
Log:
MFB: Added missing format validator to unpack() function
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests
iliaa Wed Jun 6 22:04:35 2007 UTC
Added files: (Branch: PHP_4_4)
/php-src/ext/standard/tests/strings unpack.phpt
Modified files:
/php-src/ext/standard pack.c
Log:
MFB: Added missing format validator to unpack() function
htt
iliaa Wed Jun 6 22:04:05 2007 UTC
Added files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings unpack.phpt
Modified files:
/php-src/ext/standard pack.c
/php-srcNEWS
Log:
Added missing format validator to unpack() f
tony2001Wed Jun 6 21:55:18 2007 UTC
Modified files:
/php-src/ext/standard string.c
Log:
improve the check
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.641&r2=1.642&diff_format=u
Index: php-src/ext/standard/string.c
diff -u p
tony2001Wed Jun 6 21:53:54 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard string.c
Log:
MFH
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.445.2.14.2.62&r2=1.445.2.14.2.63&diff_format=u
Index: php-src/ext/stan
Hello Nuno,
not all .re files have rules. MAybe we could collect the .re files in the
buildconf or configure process and automatically generate a makefile
target re2c if re2c is available. This rulesset might as well check if we
develop using gcc and pass -g to re2c in that case.
best regards
m
stasWed Jun 6 20:06:43 2007 UTC
Modified files:
/php-src/ext/standard string.c
Log:
MF5: Fix chunk_split fix - avoid using floats
MF5: Fix money_format - don't give strfmon more arguments then supplied
MF5: Fix str[c]spn integer overflow
http:/
sniper Wed Jun 6 18:28:14 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcMakefile.global
Log:
MFH:- Fix passing of shared extensions to run-tests.php
http://cvs.php.net/viewvc.cgi/php-src/Makefile.global?r1=1.57.2.5.2.2&r2=1.57.2.5.2.3&diff_format=u
Ind
stasWed Jun 6 18:53:36 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
Log:
new fixes
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.764&r2=1.2027.2.547.2.765&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.
stasWed Jun 6 18:38:47 2007 UTC
Modified files: (Branch: PHP_4_4)
/php-src/ext/standard string.c
Log:
Fix chunk_split fix - avoid using floats
Fix money_format - don't give strfmon more arguments then supplied
Fix str[c]spn integer overflow
http
stasWed Jun 6 18:37:52 2007 UTC
Modified files: (Branch: PHP_4_4)
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
update test for 4
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?r1=1.2.2.3&r2=1.2.2.4&diff_form
sniper Wed Jun 6 18:27:54 2007 UTC
Modified files:
/php-srcMakefile.global
Log:
- Fix for passing of shared extensions to run-tests.php
http://cvs.php.net/viewvc.cgi/php-src/Makefile.global?r1=1.72&r2=1.73&diff_format=u
Index: php-src/Makefile.global
di
stasWed Jun 6 18:15:42 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard string.c
Log:
fix the chunks fix
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/string.c?r1=1.445.2.14.2.61&r2=1.445.2.14.2.62&diff_format=u
Index: php-src/e
stasWed Jun 6 17:59:08 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard string.c
Log:
Fix chunk_split fix - avoid using floats
Fix money_format - don't give strfmon more arguments then supplied
Fix str[c]spn integer overflow
http
stasWed Jun 6 17:47:15 2007 UTC
Modified files:
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
fix test format
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?r1=1.2&r2=1.3&diff_format=u
Index: php-src/ext/sta
stasWed Jun 6 17:46:39 2007 UTC
Modified files: (Branch: PHP_4_4)
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
fix test format
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?r1=1.2.2.2&r2=1.2.2.3&diff_format
stasWed Jun 6 17:18:18 2007 UTC
Modified files: (Branch: PHP_4_4)
/php-src/ext/standard/tests/strings chunk_split.phpt strcspn.phpt
Log:
add some edge cases
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/chunk_split.phpt?r1=1.1.2.1.2.2&r
stasWed Jun 6 17:16:22 2007 UTC
Added files: (Branch: PHP_4_4)
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
add tests for moneyformat
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?view=markup&rev=1.1
In
stasWed Jun 6 17:14:59 2007 UTC
Modified files:
/php-src/ext/standard/tests/strings chunk_split.phpt strcspn.phpt
Log:
add some edge cases
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/chunk_split.phpt?r1=1.5&r2=1.6&diff_format=u
Index
stasWed Jun 6 17:13:18 2007 UTC
Modified files:
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
add moneyformat test
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ex
stasWed Jun 6 17:12:40 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings chunk_split.phpt strcspn.phpt
Log:
add some edge cases
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/chunk_split.phpt?r1=1.3.4.2&r2=1.
stasWed Jun 6 17:11:59 2007 UTC
Added files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/strings moneyformat.phpt
Log:
add test for moneyformat
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/strings/moneyformat.phpt?view=markup&rev=1.1
Ind
yep. letting 'make' regenerate the files should do the trick.
Thanks,
Nuno
- Original Message -
I guess you need to generate the files the "correct way" :)
It should happen automatically when you do the test build..? :D
(just don't run re2c manually)
--Jani
Antony Dovgal kirjoitti:
O
I guess you need to generate the files the "correct way" :)
It should happen automatically when you do the test build..? :D
(just don't run re2c manually)
--Jani
Antony Dovgal kirjoitti:
On 06.06.2007 20:00, Ilia Alshanetsky wrote:
Nuno,
What does the gcov build need that my re2c is not doing
On 06.06.2007 20:00, Ilia Alshanetsky wrote:
Nuno,
What does the gcov build need that my re2c is not doing so that I can
fix it for the future.
Apparently it needs full path, not just filename.
--
Wbr,
Antony Dovgal
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
Nuno,
What does the gcov build need that my re2c is not doing so that I can
fix it for the future.
Ilia
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
nlopess Wed Jun 6 12:29:06 2007 UTC
Modified files:
/php-src/ext/standard url_scanner_ex.c
Log:
fix gcov build..
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/url_scanner_ex.c?r1=1.105&r2=1.106&diff_format=u
Index: php-src/ext/standard/url_scanner_ex.
nlopess Wed Jun 6 12:27:24 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard url_scanner_ex.c
Log:
fix gcov build for the 100th time..
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/url_scanner_ex.c?r1=1.95.2.4.2.2&r2=1.95.2.4.2.3&diff_fo
zoe Wed Jun 6 12:53:17 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/ext/standard/tests/filefile.inc
Log:
fixed file permission for new empty file
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/file.inc?r1=1.1.2.2&r2=1.1.2.3&diff_for
zoe Wed Jun 6 12:50:06 2007 UTC
Added files:
/php-src/ext/standard/tests/filedisk_total_space_basic.phpt
file_basic.phpt
is_executable_variation.phpt
zoe Wed Jun 6 12:48:13 2007 UTC
Modified files:
/php-src/ext/standard/tests/filefile.inc
Log:
fixed file permission for new empty file
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/tests/file/file.inc?r1=1.3&r2=1.4&diff_format=u
Index: php-src/ext/
tony2001Wed Jun 6 11:36:21 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
Log:
more details
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.763&r2=1.2027.2.547.2.764&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.20
On 6/6/07, Antony Dovgal <[EMAIL PROTECTED]> wrote:
On 06.06.2007 14:00, Pierre wrote:
> On 6/6/07, Antony Dovgal <[EMAIL PROTECTED]> wrote:
>> tony2001Wed Jun 6 09:45:43 2007 UTC
>>
>> Modified files: (Branch: PHP_5_2)
>> /php-srcNEWS
>> /php-src/ext/g
On 06.06.2007 14:00, Pierre wrote:
On 6/6/07, Antony Dovgal <[EMAIL PROTECTED]> wrote:
tony2001Wed Jun 6 09:45:43 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
/php-src/ext/gd/libgd gd.c
/php-src/ext/gd gd.c
Log:
MFH: fix s
On 6/6/07, Antony Dovgal <[EMAIL PROTECTED]> wrote:
tony2001Wed Jun 6 09:45:43 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
/php-src/ext/gd/libgd gd.c
/php-src/ext/gd gd.c
Log:
MFH: fix several integer overflows in GD
Can
tony2001Wed Jun 6 09:45:43 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
/php-src/ext/gd/libgd gd.c
/php-src/ext/gd gd.c
Log:
MFH: fix several integer overflows in GD
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.20
tony2001Wed Jun 6 09:43:39 2007 UTC
Modified files:
/php-src/ext/gd/libgd gd.c
/php-src/ext/gd gd.c
Log:
fix several integer overflows in GD
http://cvs.php.net/viewvc.cgi/php-src/ext/gd/libgd/gd.c?r1=1.104&r2=1.105&diff_format=u
Index:
tony2001Wed Jun 6 08:35:44 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-srcNEWS
Log:
BFN + fix other entries
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.761&r2=1.2027.2.547.2.762&diff_format=u
Index: php-src/NEWS
diff -u php-sr
56 matches
Mail list logo