]> granicus.if.org Git - php/log
php
12 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Sun, 24 Feb 2013 02:51:11 +0000 (03:51 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  sendrecvmsg_shutdown function moved to mshutdown

12 years agosendrecvmsg_shutdown function moved to mshutdown
Gustavo Lopes [Sun, 24 Feb 2013 02:40:22 +0000 (03:40 +0100)]
sendrecvmsg_shutdown function moved to mshutdown

The function php_socket_sendrecvmsg_shutdown() should have been called in
MSHUTDOWN, not RSHUTDOWN.

Bug only on TSRM builds.

Should fix bug #64287.

12 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Sat, 23 Feb 2013 23:49:41 +0000 (00:49 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fix ext/sockets build with phpize
  Fix ext/intl build with phpize

12 years agoFix ext/sockets build with phpize
Gustavo Lopes [Sat, 23 Feb 2013 23:47:44 +0000 (00:47 +0100)]
Fix ext/sockets build with phpize

Fixes bug #64285

12 years agoFix ext/intl build with phpize
Gustavo Lopes [Sat, 23 Feb 2013 23:30:08 +0000 (00:30 +0100)]
Fix ext/intl build with phpize

Fixes bug #64284.

12 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Sat, 23 Feb 2013 17:07:22 +0000 (18:07 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  NEWS for 8718755
  Remove trailing whitespace; break long lines
  Fix rounding of zend_dval_to_lval
  Fix zend_dval_to_lval outside 64bit integers range

12 years agoNEWS for 8718755
Gustavo Lopes [Sat, 23 Feb 2013 17:07:01 +0000 (18:07 +0100)]
NEWS for 8718755

12 years agoRemove trailing whitespace; break long lines
Gustavo Lopes [Sat, 23 Feb 2013 17:00:21 +0000 (18:00 +0100)]
Remove trailing whitespace; break long lines

12 years agoMerge branch 'dval_to_lval' into PHP-5.5
Gustavo Lopes [Sat, 23 Feb 2013 16:59:28 +0000 (17:59 +0100)]
Merge branch 'dval_to_lval' into PHP-5.5

* dval_to_lval:
  Fix rounding of zend_dval_to_lval
  Fix zend_dval_to_lval outside 64bit integers range

12 years agoFix rounding of zend_dval_to_lval
Gustavo Lopes [Fri, 22 Feb 2013 23:41:39 +0000 (00:41 +0100)]
Fix rounding of zend_dval_to_lval

Now rounding is always towards zero; the rounding can be though as if
occurring on the original double. Only relevant for the 32-bit long
variant.

12 years agoFix zend_dval_to_lval outside 64bit integers range
Gustavo Lopes [Sun, 17 Feb 2013 22:40:26 +0000 (23:40 +0100)]
Fix zend_dval_to_lval outside 64bit integers range

PHP should preserve the least significant bits when casting from double
to long. Zend.m4 contains this:

AC_DEFINE([ZEND_DVAL_TO_LVAL_CAST_OK], 1, [Define if double cast to long preserves least significant bits])

If ZEND_DVAL_TO_LVAL_CAST_OK is not defined, zend_operators.h had an
inline implementation of zend_dval_to_lval() that would do a cast to an
int64_t (when sizeof(long) == 4), then a cast to unsigned long and
finally the cast to long.

While this works well for doubles inside the range of values of the type
used in the first cast (int64_t in the 32-bit version and unsigned long
in the 64-bit version), if outside the range, it is undefined behavior
that WILL give varying and not particularly useful results.

This commit uses fmod() to first put the double in a range that can
safely be cast to unsigned long and then casts this unsigned long to
long. This last cast is implementation defined, but it's very likely
that this gives the expected result (i.e. the internal 2's complement
representation is unchanged) on all platforms that PHP supports. In any
case, the previous implementationa already had this assumption.

This alternative code path is indeed significantly slower than simply
casting the double (almost an order of magnitude), but that should not
matter because casting doubles with a very high absolute value is a
rare event.

12 years agoMerge branch 'PHP-5.5'
Andrey Hristov [Fri, 22 Feb 2013 12:50:13 +0000 (13:50 +0100)]
Merge branch 'PHP-5.5'

12 years agorelax the check
Andrey Hristov [Fri, 22 Feb 2013 12:50:04 +0000 (13:50 +0100)]
relax the check

12 years agoMerge branch 'PHP-5.5'
Andrey Hristov [Fri, 22 Feb 2013 12:18:07 +0000 (13:18 +0100)]
Merge branch 'PHP-5.5'

12 years agoAdd some parameter checks
Andrey Hristov [Fri, 22 Feb 2013 12:17:46 +0000 (13:17 +0100)]
Add some parameter checks

12 years agoMerge branch 'PHP-5.5'
Johannes Schlüter [Thu, 21 Feb 2013 15:51:37 +0000 (16:51 +0100)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Johannes Schlüter [Thu, 21 Feb 2013 15:50:59 +0000 (16:50 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoFix #60840 (undefined symbol: mysqlnd_debug_std_no_trace_funcs)
Johannes Schlüter [Thu, 21 Feb 2013 15:49:28 +0000 (16:49 +0100)]
Fix #60840 (undefined symbol: mysqlnd_debug_std_no_trace_funcs)

12 years agoMerge branch 'PHP-5.5'
Johannes Schlüter [Thu, 21 Feb 2013 14:11:09 +0000 (15:11 +0100)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Johannes Schlüter [Thu, 21 Feb 2013 14:10:47 +0000 (15:10 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Johannes Schlüter [Thu, 21 Feb 2013 14:10:15 +0000 (15:10 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

12 years agoFix TSRM (after afc1debb)
Johannes Schlüter [Thu, 21 Feb 2013 14:08:58 +0000 (15:08 +0100)]
Fix TSRM (after afc1debb)

12 years agoMerge branch 'PHP-5.5'
Dmitry Stogov [Thu, 21 Feb 2013 12:23:36 +0000 (16:23 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  PHAR should modify entry timestamp when it's modified

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Dmitry Stogov [Thu, 21 Feb 2013 12:08:07 +0000 (16:08 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  PHAR should modify entry timestamp when it's modified

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Dmitry Stogov [Thu, 21 Feb 2013 11:57:26 +0000 (15:57 +0400)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  PHAR should modify entry timestamp when it's modified

12 years agoPHAR should modify entry timestamp when it's modified
Dmitry Stogov [Thu, 21 Feb 2013 11:55:20 +0000 (15:55 +0400)]
PHAR should modify entry timestamp when it's modified

12 years agoMerge branch 'PHP-5.5'
Sara Golemon [Thu, 21 Feb 2013 11:22:31 +0000 (03:22 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  http-stream test requires network connectivity

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Sara Golemon [Thu, 21 Feb 2013 11:22:09 +0000 (03:22 -0800)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  http-stream test requires network connectivity

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Sara Golemon [Thu, 21 Feb 2013 11:21:49 +0000 (03:21 -0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  http-stream test requires network connectivity

12 years agohttp-stream test requires network connectivity
Sara Golemon [Thu, 21 Feb 2013 11:21:23 +0000 (03:21 -0800)]
http-stream test requires network connectivity

12 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Thu, 21 Feb 2013 10:21:19 +0000 (18:21 +0800)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Xinchen Hui [Thu, 21 Feb 2013 10:20:48 +0000 (18:20 +0800)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoFixed bug #64235 (Insteadof not work for class method in 5.4.11)
Xinchen Hui [Thu, 21 Feb 2013 10:18:41 +0000 (18:18 +0800)]
Fixed bug #64235 (Insteadof not work for class method in 5.4.11)

As we discussed with stefan, we think previous of allowing use with
classes is a bug, should be forbided, anyway, the error message should
be improved.

12 years agoMerge branch 'PHP-5.5'
Anatol Belski [Thu, 21 Feb 2013 10:00:54 +0000 (11:00 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  added back the older vc9 favours

12 years agoadded back the older vc9 favours
Anatol Belski [Thu, 21 Feb 2013 09:59:50 +0000 (10:59 +0100)]
added back the older vc9 favours

12 years agoMerge branch 'PHP-5.5'
Anatol Belski [Thu, 21 Feb 2013 09:34:40 +0000 (10:34 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  updated lib versions
  updated lib versions
  updated lib versions

12 years agoupdated lib versions
Anatol Belski [Thu, 21 Feb 2013 09:32:56 +0000 (10:32 +0100)]
updated lib versions

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Thu, 21 Feb 2013 09:29:55 +0000 (10:29 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  updated lib versions
  updated lib versions

12 years agoupdated lib versions
Anatol Belski [Thu, 21 Feb 2013 09:27:37 +0000 (10:27 +0100)]
updated lib versions

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatol Belski [Thu, 21 Feb 2013 09:26:38 +0000 (10:26 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  updated lib versions

12 years agoMerge branch 'PHP-5.5'
Stanislav Malyshev [Thu, 21 Feb 2013 08:57:52 +0000 (00:57 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  news for bug #49348
  fix tests
  fix bug #49348 - issue notice on get_property_ptr_ptr when used for read

12 years agonews for bug #49348
Stanislav Malyshev [Thu, 21 Feb 2013 08:56:00 +0000 (00:56 -0800)]
news for bug #49348

12 years agoMerge branch 'bug49348' into PHP-5.5
Stanislav Malyshev [Thu, 21 Feb 2013 08:52:46 +0000 (00:52 -0800)]
Merge branch 'bug49348' into PHP-5.5

* bug49348:
  fix tests
  fix bug #49348 - issue notice on get_property_ptr_ptr when used for read

12 years agoupdated lib versions
Anatol Belski [Thu, 21 Feb 2013 08:46:50 +0000 (09:46 +0100)]
updated lib versions

12 years agoMerge branch 'PHP-5.5'
Dmitry Stogov [Wed, 20 Feb 2013 18:31:52 +0000 (22:31 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed external entity loading

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Dmitry Stogov [Wed, 20 Feb 2013 18:30:59 +0000 (22:30 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed external entity loading

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Dmitry Stogov [Wed, 20 Feb 2013 18:27:41 +0000 (22:27 +0400)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed external entity loading

Conflicts:
ext/libxml/libxml.c
ext/libxml/php_libxml.h

12 years agoFixed external entity loading
Dmitry Stogov [Wed, 20 Feb 2013 18:14:59 +0000 (22:14 +0400)]
Fixed external entity loading

12 years agoMerge branch 'PHP-5.5'
Johannes Schlüter [Wed, 20 Feb 2013 10:58:29 +0000 (11:58 +0100)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Johannes Schlüter [Wed, 20 Feb 2013 10:58:01 +0000 (11:58 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Johannes Schlüter [Wed, 20 Feb 2013 10:57:11 +0000 (11:57 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

12 years ago5.3.22 NEWS
Johannes Schlüter [Wed, 20 Feb 2013 10:56:29 +0000 (11:56 +0100)]
5.3.22 NEWS

12 years agoMerge branch 'PHP-5.5'
David Soria Parra [Tue, 19 Feb 2013 18:43:18 +0000 (19:43 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Start new NEWS section for beta1
  News for PHP 5.5.0 Alpha 5

12 years agoStart new NEWS section for beta1
David Soria Parra [Tue, 19 Feb 2013 18:42:27 +0000 (19:42 +0100)]
Start new NEWS section for beta1

12 years agoNews for PHP 5.5.0 Alpha 5
David Soria Parra [Tue, 19 Feb 2013 18:26:33 +0000 (19:26 +0100)]
News for PHP 5.5.0 Alpha 5

12 years agoMerge branch 'PHP-5.5'
David Soria Parra [Tue, 19 Feb 2013 18:41:02 +0000 (19:41 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  News for PHP 5.5.0 Alpha 5

12 years agoNews for PHP 5.5.0 Alpha 5
David Soria Parra [Tue, 19 Feb 2013 18:26:33 +0000 (19:26 +0100)]
News for PHP 5.5.0 Alpha 5

12 years agoMerge branch 'PHP-5.5'
Anatol Belski [Tue, 19 Feb 2013 08:05:45 +0000 (09:05 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  fix the test for curl 7.29.0+

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Tue, 19 Feb 2013 08:05:27 +0000 (09:05 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix the test for curl 7.29.0+

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatol Belski [Tue, 19 Feb 2013 08:04:52 +0000 (09:04 +0100)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  fix the test for curl 7.29.0+

12 years agofix the test for curl 7.29.0+
Anatol Belski [Tue, 19 Feb 2013 08:04:06 +0000 (09:04 +0100)]
fix the test for curl 7.29.0+

12 years agofix tests
Stanislav Malyshev [Tue, 19 Feb 2013 07:01:42 +0000 (23:01 -0800)]
fix tests

12 years agofix bug #49348 - issue notice on get_property_ptr_ptr when used for read
Stanislav Malyshev [Tue, 19 Feb 2013 04:56:02 +0000 (20:56 -0800)]
fix bug #49348 - issue notice on get_property_ptr_ptr when used for read

12 years agoMerge branch 'PHP-5.5'
Dmitry Stogov [Mon, 18 Feb 2013 12:36:25 +0000 (16:36 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #64070 (Inheritance with Traits failed with error)

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Dmitry Stogov [Mon, 18 Feb 2013 12:20:49 +0000 (16:20 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed bug #64070 (Inheritance with Traits failed with error)

Conflicts:
NEWS
Zend/zend_compile.c

12 years agoFixed bug #64070 (Inheritance with Traits failed with error)
Dmitry Stogov [Mon, 18 Feb 2013 12:07:51 +0000 (16:07 +0400)]
Fixed bug #64070 (Inheritance with Traits failed with error)

12 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Sun, 17 Feb 2013 21:43:28 +0000 (22:43 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Cleanup some multicast code; fix for mac os x?

12 years agoCleanup some multicast code; fix for mac os x?
Gustavo Lopes [Sun, 17 Feb 2013 12:23:07 +0000 (13:23 +0100)]
Cleanup some multicast code; fix for mac os x?

When I moved some stuff from sockets.c to multicast.c, I did not copy
some conditional defines for systems without the RFC 3678 API.

I moved such defines to multicast.h so both sockets.c and multicast.c
can benefit from them and I prefixed them with PHP_ so that it's less
confusing: now PHP_MCAST_* are defined to either the MCAST_* RFC 3678
APIs or to legacy APIs and MCAST_* always mean the (possibly undefined)
system definitions.

12 years agoMerge branch 'PHP-5.5'
Stanislav Malyshev [Sun, 17 Feb 2013 21:34:07 +0000 (13:34 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  fix protos

12 years agofix protos
Stanislav Malyshev [Sun, 17 Feb 2013 21:33:48 +0000 (13:33 -0800)]
fix protos

12 years agoMerge branch 'PHP-5.5'
Stanislav Malyshev [Sun, 17 Feb 2013 21:30:04 +0000 (13:30 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  fix bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey()

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Sun, 17 Feb 2013 21:29:34 +0000 (13:29 -0800)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  fix bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey()

12 years agofix bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey()
Stanislav Malyshev [Sun, 17 Feb 2013 21:28:42 +0000 (13:28 -0800)]
fix bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey()

12 years agoMerge branch 'PHP-5.5'
Anatol Belski [Sun, 17 Feb 2013 19:29:58 +0000 (20:29 +0100)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  fix free vs. curl_free

12 years agofix free vs. curl_free
Anatol Belski [Sun, 17 Feb 2013 19:29:20 +0000 (20:29 +0100)]
fix free vs. curl_free

12 years agoMerge branch 'PHP-5.5'
Stanislav Malyshev [Sun, 17 Feb 2013 10:38:41 +0000 (02:38 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  update NEWS

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Sun, 17 Feb 2013 10:38:25 +0000 (02:38 -0800)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  update NEWS

12 years agoupdate NEWS
Stanislav Malyshev [Sun, 17 Feb 2013 10:37:58 +0000 (02:37 -0800)]
update NEWS

12 years agoMerge branch 'PHP-5.5'
Stanislav Malyshev [Sun, 17 Feb 2013 09:20:36 +0000 (01:20 -0800)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Added HTTP codes as of RFC 6585

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Stanislav Malyshev [Sun, 17 Feb 2013 09:19:08 +0000 (01:19 -0800)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Added HTTP codes as of RFC 6585

12 years agoAdded HTTP codes as of RFC 6585
Jonh Wendell [Fri, 8 Feb 2013 16:09:11 +0000 (14:09 -0200)]
Added HTTP codes as of RFC 6585

Added descriptions for the new HTTP codes:

- 428 Precondition Required
- 429 Too Many Requests
- 431 Request Header Fields Too Large
- 511 Network Authentication Required

12 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Sun, 17 Feb 2013 03:07:07 +0000 (11:07 +0800)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Xinchen Hui [Sun, 17 Feb 2013 03:06:33 +0000 (11:06 +0800)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Sun, 17 Feb 2013 03:05:34 +0000 (11:05 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

12 years agoFixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS)
Xinchen Hui [Sun, 17 Feb 2013 03:04:36 +0000 (11:04 +0800)]
Fixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS)

12 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Sat, 16 Feb 2013 14:30:14 +0000 (22:30 +0800)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Xinchen Hui [Sat, 16 Feb 2013 14:29:14 +0000 (22:29 +0800)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoFix test failed after 0ea83ff8478d867ebf1603a43cd5d3432022cee7
Xinchen Hui [Sat, 16 Feb 2013 14:28:28 +0000 (22:28 +0800)]
Fix test failed after 0ea83ff8478d867ebf1603a43cd5d3432022cee7

12 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Sat, 16 Feb 2013 14:25:37 +0000 (22:25 +0800)]
Merge branch 'PHP-5.5'

12 years agoExceptions triggered by undefined variable should be handled before FATAL error
Xinchen Hui [Sat, 16 Feb 2013 14:22:22 +0000 (22:22 +0800)]
Exceptions triggered by undefined variable should be handled before FATAL error

this is a enhancement of the fix for bug #64135

12 years agoFixed bug #64124 (IPv6 malformed)
Boris Lytochkin [Thu, 14 Feb 2013 19:12:53 +0000 (23:12 +0400)]
Fixed bug #64124 (IPv6 malformed)

12 years ago+Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin)
Boris Lytochkin [Thu, 14 Feb 2013 19:08:08 +0000 (23:08 +0400)]
+Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin)

12 years agoMerge branch 'PHP-5.5'
Dmitry Stogov [Wed, 13 Feb 2013 18:08:13 +0000 (22:08 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Proper bit reset code

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Dmitry Stogov [Wed, 13 Feb 2013 18:07:57 +0000 (22:07 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Proper bit reset code

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Dmitry Stogov [Wed, 13 Feb 2013 18:07:21 +0000 (22:07 +0400)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Proper bit reset code

12 years agoProper bit reset code
Dmitry Stogov [Wed, 13 Feb 2013 18:06:37 +0000 (22:06 +0400)]
Proper bit reset code

12 years agoMerge branch 'PHP-5.5'
Ard Biesheuvel [Wed, 13 Feb 2013 12:52:30 +0000 (13:52 +0100)]
Merge branch 'PHP-5.5'

12 years agoMerge branch 'PHP-5.4' into PHP-5.5
Ard Biesheuvel [Wed, 13 Feb 2013 12:50:53 +0000 (13:50 +0100)]
Merge branch 'PHP-5.4' into PHP-5.5

12 years agoFixed bug #64197 (_Offsetof() macro used but not defined on ARM/Clang)
Ard Biesheuvel [Wed, 13 Feb 2013 11:22:50 +0000 (12:22 +0100)]
Fixed bug #64197 (_Offsetof() macro used but not defined on ARM/Clang)

Updated the code to test for __ARMCC_VERSION instead of __arm, as
that is a more reliable indicator of whether the ARMCC compiler is
being used.

12 years agoMerge branch 'PHP-5.5'
Ard Biesheuvel [Mon, 11 Feb 2013 16:54:54 +0000 (17:54 +0100)]
Merge branch 'PHP-5.5'