]> granicus.if.org Git - php/log
php
12 years agoMerge branch 'pull-request/54'
Stanislav Malyshev [Thu, 24 May 2012 19:17:07 +0000 (14:17 -0500)]
Merge branch 'pull-request/54'

* pull-request/54:
  Allow arbitrary expressions for empty()

    This change is as per RFC https://wiki.php.net/rfc/empty_isset_exprs.

    The change allows passing the result of function calls and other
    expressions to the empty() language construct. This is accomplished by
    simply rewriting empty(expr) to !expr.

    The change does not affect the suppression of errors when using empty()
    on variables. empty($undefinedVar) will continue not to throw errors.
    When an expression is used inside empty() on the other hand, errors will
    not be suppressed. Thus empty($undefinedVar + $somethingElse) *will*
    throw a notice.

    The change also does not make empty() into a real function, so using
    'empty' as a callback is still not possible.

    In addition to the empty() changes the commit adds nicer error messages
    when isset() is used on function call results or other expressions.

12 years agoMerge branch 'PHP-5.4'
Felipe Pena [Thu, 24 May 2012 16:43:53 +0000 (13:43 -0300)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed magic file regex support

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Felipe Pena [Thu, 24 May 2012 16:43:35 +0000 (13:43 -0300)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  - Fixed magic file regex support

12 years ago- Fixed magic file regex support
Felipe Pena [Thu, 24 May 2012 16:42:47 +0000 (13:42 -0300)]
- Fixed magic file regex support

12 years agoMerge remote-tracking branch 'origin/PHP-5.4'
Xinchen Hui [Thu, 24 May 2012 15:38:53 +0000 (23:38 +0800)]
Merge remote-tracking branch 'origin/PHP-5.4'

* origin/PHP-5.4:
  Fixed bug #62073 (Different ways of iterating over an SplMaxHeap result in different keys)

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Xinchen Hui [Thu, 24 May 2012 15:34:14 +0000 (23:34 +0800)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #62073 (Different ways of iterating over an SplMaxHeap result in different keys)

12 years agoFixed bug #62073
Xinchen Hui [Thu, 24 May 2012 15:20:21 +0000 (23:20 +0800)]
Fixed bug #62073

(Different ways of iterating over an SplMaxHeap result in in different keys)

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Thu, 24 May 2012 12:33:42 +0000 (14:33 +0200)]
Merge branch '5.4'

12 years agoMerge branch '5.3' into 5.4
Gustavo André dos Santos Lopes [Thu, 24 May 2012 12:33:24 +0000 (14:33 +0200)]
Merge branch '5.3' into 5.4

12 years agoFixed bug #55610: ResourceBundle and Traversable
Gustavo André dos Santos Lopes [Thu, 24 May 2012 12:31:07 +0000 (14:31 +0200)]
Fixed bug #55610: ResourceBundle and Traversable

12 years agoMerge branch '5.4' with no code changes.
Gustavo André dos Santos Lopes [Thu, 24 May 2012 12:18:38 +0000 (14:18 +0200)]
Merge branch '5.4' with no code changes.

12 years agoFixed last commit on 5.4
Gustavo André dos Santos Lopes [Thu, 24 May 2012 12:04:19 +0000 (14:04 +0200)]
Fixed last commit on 5.4

There's no change from the intended behavior. If INTL_G(default_locale)
is NULL, the default ICU locale, as given by locale_get_default() in
master, will still be used by ures_open().

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Thu, 24 May 2012 11:59:57 +0000 (13:59 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fixed bug #62140 ext\standard\tests\file\tempnam_variation7-win32.phpt fails

12 years agoFixed bug #62140 ext\standard\tests\file\tempnam_variation7-win32.phpt fails
Anatoliy Belsky [Thu, 24 May 2012 11:58:42 +0000 (13:58 +0200)]
Fixed bug #62140 ext\standard\tests\file\tempnam_variation7-win32.phpt fails

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Thu, 24 May 2012 11:52:06 +0000 (13:52 +0200)]
Merge branch '5.4'

Conflicts:
UPGRADING

12 years agoChanged ResourceBundle constructor behavior
Gustavo André dos Santos Lopes [Thu, 24 May 2012 11:35:28 +0000 (13:35 +0200)]
Changed ResourceBundle constructor behavior

null is now accepted for two first (mandatory arguments).

Passing null as the package name causes NULL to be passed to ICU  and
the default ICU data to be loaded.

Passing null as the locale name causes the default locale to be used.

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Thu, 24 May 2012 11:27:24 +0000 (13:27 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix bug #62139 ext\standard\tests\file\rename_variation13-win32.phpt fails

12 years agoFix bug #62139 ext\standard\tests\file\rename_variation13-win32.phpt fails
Anatoliy Belsky [Thu, 24 May 2012 11:26:32 +0000 (13:26 +0200)]
Fix bug #62139 ext\standard\tests\file\rename_variation13-win32.phpt fails

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Thu, 24 May 2012 10:48:58 +0000 (12:48 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fixed bug #62138 ext\standard\tests\dir\dir_variation8-win32.phpt fails

12 years agoFixed bug #62138 ext\standard\tests\dir\dir_variation8-win32.phpt fails
Anatoliy Belsky [Thu, 24 May 2012 10:39:00 +0000 (12:39 +0200)]
Fixed bug #62138 ext\standard\tests\dir\dir_variation8-win32.phpt fails

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Thu, 24 May 2012 10:06:53 +0000 (12:06 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix bug #62137 ext\phar\tests\fatal_error_webphar.phpt fails

12 years agoFix bug #62137 ext\phar\tests\fatal_error_webphar.phpt fails
Anatoliy Belsky [Thu, 24 May 2012 10:04:38 +0000 (12:04 +0200)]
Fix bug #62137 ext\phar\tests\fatal_error_webphar.phpt fails

12 years agoUpdate NEWS
Gustavo André dos Santos Lopes [Thu, 24 May 2012 09:14:36 +0000 (11:14 +0200)]
Update NEWS

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Thu, 24 May 2012 09:09:18 +0000 (11:09 +0200)]
Merge branch '5.4'

12 years agoMerge branch '5.3' into 5.4
Gustavo André dos Santos Lopes [Thu, 24 May 2012 09:08:55 +0000 (11:08 +0200)]
Merge branch '5.3' into 5.4

12 years agoFixed bug #60785
Gustavo André dos Santos Lopes [Thu, 24 May 2012 08:44:44 +0000 (10:44 +0200)]
Fixed bug #60785

Memory leak in IntlDateFormatter constructor.

udat_setCalendar() clones the calendar before it adopts it,
so we were leaking the original calendar.

Also we now validate the calendar type.

12 years agoadd support for the alloc_size __attribute__ (through ZEND_ATTRIBUTE_ALLOC_SIZE and...
Nuno Lopes [Thu, 24 May 2012 02:18:01 +0000 (22:18 -0400)]
add support for the alloc_size __attribute__ (through ZEND_ATTRIBUTE_ALLOC_SIZE and ZEND_ATTRIBUTE_ALLOC_SIZE2

requires GCC >= 4.3 or clang >= 3.2 to perform anything useful

12 years agoThis test depends on the default_charset setting, so set it to
Rasmus Lerdorf [Thu, 24 May 2012 00:37:13 +0000 (17:37 -0700)]
This test depends on the default_charset setting, so set it to
UTF-8 for consistent output

12 years agoFix broken apache_request_headers test
Rasmus Lerdorf [Thu, 24 May 2012 00:37:13 +0000 (17:37 -0700)]
Fix broken apache_request_headers test

This test depends on the default_charset setting, so set it to
UTF-8 for consistent output

12 years agoFixed bug #62097
Gustavo André dos Santos Lopes [Tue, 22 May 2012 10:36:28 +0000 (12:36 +0200)]
Fixed bug #62097

This fixes the fix for bug #54547 in 32-bit machines by accepting
float comparisons in 32-bit machines as long as the integer is
not larger than the mantissa.

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Wed, 23 May 2012 13:52:47 +0000 (15:52 +0200)]
Merge branch '5.4'

12 years agoMerge branch '5.3' into 5.4
Gustavo André dos Santos Lopes [Wed, 23 May 2012 13:52:32 +0000 (15:52 +0200)]
Merge branch '5.3' into 5.4

12 years agoFixed bug #62017
Gustavo André dos Santos Lopes [Wed, 23 May 2012 13:48:50 +0000 (15:48 +0200)]
Fixed bug #62017

IntlDateFormatter constructor would release some resources
under certain error conditions.

12 years agoFixed several ext/intl tests
Gustavo André dos Santos Lopes [Wed, 23 May 2012 12:49:01 +0000 (14:49 +0200)]
Fixed several ext/intl tests

12 years agoFixed bug #62073 (Different ways of iterating over an SplMaxHeap result in different...
Reeze Xia [Wed, 23 May 2012 12:42:06 +0000 (20:42 +0800)]
Fixed bug #62073 (Different ways of iterating over an SplMaxHeap result in different keys)

12 years agoFixed bug number in NEWS
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:42:24 +0000 (13:42 +0200)]
Fixed bug number in NEWS

12 years agoUpdated NEWS w.r.t to ext/intl changes
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:35:11 +0000 (13:35 +0200)]
Updated NEWS w.r.t to ext/intl changes

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:27:54 +0000 (13:27 +0200)]
Merge branch '5.4'

12 years agoMerge branch '5.3' into 5.4
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:27:21 +0000 (13:27 +0200)]
Merge branch '5.3' into 5.4

Conflicts:
sapi/fpm/fpm/fpm_main.c

12 years agoFixed bug #6208: memory leak in grapheme_extract()
Gustavo André dos Santos Lopes [Wed, 23 May 2012 10:09:27 +0000 (12:09 +0200)]
Fixed bug #6208: memory leak in grapheme_extract()

12 years agoFixed bug #62082
Gustavo André dos Santos Lopes [Wed, 23 May 2012 10:44:44 +0000 (12:44 +0200)]
Fixed bug #62082

This was a buffer overflow in internal function
get_icu_disp_value_src_php().

12 years agoFixed bug #62081
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:03:55 +0000 (13:03 +0200)]
Fixed bug #62081

Constructor of IntlDateFormatter would leak if called twice.

Made calling it more than once error out before starting
using resources.

12 years agoFixed bug #62070
Gustavo André dos Santos Lopes [Wed, 23 May 2012 11:22:06 +0000 (13:22 +0200)]
Fixed bug #62070

Collator::getSortKey() was returning an unterminated string
due the length given to RETURN_STRINGL being off by one.

12 years agoMerge branch 'PHP-5.4'
Jerome Loyet [Wed, 23 May 2012 09:53:20 +0000 (11:53 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed bug #61026 (FPM pools can listen on the same address)

12 years ago- Fixed bug #61026 (FPM pools can listen on the same address)
Jerome Loyet [Wed, 23 May 2012 09:53:04 +0000 (11:53 +0200)]
- Fixed bug #61026 (FPM pools can listen on the same address)

12 years ago- Fixed bug #61026 (FPM pools can listen on the same address)
Jerome Loyet [Wed, 23 May 2012 09:52:04 +0000 (11:52 +0200)]
- Fixed bug #61026 (FPM pools can listen on the same address)

12 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Jerome Loyet [Wed, 23 May 2012 09:41:29 +0000 (11:41 +0200)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
  Fix bug #62112: number_format() is not binary safe

12 years agoMerge branch 'master' of git.php.net:php-src
Jerome Loyet [Wed, 23 May 2012 09:40:59 +0000 (11:40 +0200)]
Merge branch 'master' of git.php.net:php-src

* 'master' of git.php.net:php-src:
  Fix bug #62112: number_format() is not binary safe

12 years agoMerge branch 'PHP-5.4'
Jerome Loyet [Wed, 23 May 2012 09:40:36 +0000 (11:40 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed bug #61839 (Unable to cross-compile PHP with --enable-fpm)

12 years ago- Fixed bug #61839 (Unable to cross-compile PHP with --enable-fpm)
Jerome Loyet [Wed, 23 May 2012 09:40:22 +0000 (11:40 +0200)]
- Fixed bug #61839 (Unable to cross-compile PHP with --enable-fpm)

12 years agoMerge branch '5.4'
Gustavo André dos Santos Lopes [Wed, 23 May 2012 09:37:45 +0000 (11:37 +0200)]
Merge branch '5.4'

12 years agoFix bug #62112: number_format() is not binary safe
Gustavo André dos Santos Lopes [Wed, 23 May 2012 08:56:57 +0000 (10:56 +0200)]
Fix bug #62112: number_format() is not binary safe

The bug report actually urges PHP 5.3's behavior to be
reinstated -- that is, make "\0", when used as a separator,
be the same as no separator at all. I believe that is not a
proper course of action and that "\0" being interpreted as
no seperator was a bug in PHP 5.3.

Using "" for no separator, in both 5.3 and 5.4, before and
after this change, causes no separator to be used, so
there is no functionality loss.

12 years agoMerge branch 'PHP-5.4'
Jerome Loyet [Wed, 23 May 2012 09:32:02 +0000 (11:32 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed bug #61295 (php-fpm should not fail with commented 'user' for non-root start)

12 years ago- Fixed bug #61295 (php-fpm should not fail with commented 'user' for non-root start)
Jerome Loyet [Wed, 23 May 2012 09:31:33 +0000 (11:31 +0200)]
- Fixed bug #61295 (php-fpm should not fail with commented 'user' for non-root start)

12 years ago- Fixed bug #61295 (php-fpm should not fail with commented 'user' for non-root start)
Jerome Loyet [Wed, 23 May 2012 09:30:27 +0000 (11:30 +0200)]
- Fixed bug #61295 (php-fpm should not fail with commented 'user' for non-root start)

12 years agoMerge branch 'PHP-5.4'
Jerome Loyet [Wed, 23 May 2012 08:37:36 +0000 (10:37 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - fix help message for '-R'
  - Fixed bug #61835 (php-fpm is not allowed to run as root)

12 years ago- Fix help message for '-R'
Jerome Loyet [Wed, 23 May 2012 08:36:45 +0000 (10:36 +0200)]
- Fix help message for '-R'

12 years ago- fix help message for '-R'
Jerome Loyet [Wed, 23 May 2012 08:35:37 +0000 (10:35 +0200)]
- fix help message for '-R'

12 years ago- add missing help message for '-R'
Jerome Loyet [Wed, 23 May 2012 08:34:16 +0000 (10:34 +0200)]
- add missing help message for '-R'

12 years ago- Fixed bug #61835 (php-fpm is not allowed to run as root)
Jerome Loyet [Wed, 23 May 2012 08:32:42 +0000 (10:32 +0200)]
- Fixed bug #61835 (php-fpm is not allowed to run as root)

12 years ago- Fixed bug #61835 (php-fpm is not allowed to run as root)
Jerome Loyet [Wed, 23 May 2012 07:49:13 +0000 (09:49 +0200)]
- Fixed bug #61835 (php-fpm is not allowed to run as root)

12 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Wed, 23 May 2012 05:53:25 +0000 (13:53 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Revert NEWS
  Revert "Implemented FR #61602 Allow access to name of constant used as default value"
  Fix typo while resolving conflicts
  Revert "Implemented FR #61602 Allow access to name of constant used as default value"

12 years agoMerge remote-tracking branch 'origin/PHP-5.3' into PHP-5.4
Xinchen Hui [Wed, 23 May 2012 05:52:36 +0000 (13:52 +0800)]
Merge remote-tracking branch 'origin/PHP-5.3' into PHP-5.4

12 years agoRevert NEWS
Xinchen Hui [Wed, 23 May 2012 05:52:18 +0000 (13:52 +0800)]
Revert NEWS

12 years agoRevert "Implemented FR #61602 Allow access to name of constant used as default value"
Xinchen Hui [Wed, 23 May 2012 05:50:12 +0000 (13:50 +0800)]
Revert "Implemented FR #61602 Allow access to name of constant used as default value"

This reverts commit 054f3e3ce5af13c2c3a6ccd54f7dc3e2f6cd4f74.

See: http://news.php.net/php.cvs/69137 and the author confirmed.
Will commit later after the author fixed this then make a new PR.

Conflicts:

ext/reflection/php_reflection.c

12 years agoFix typo while resolving conflicts
Xinchen Hui [Wed, 23 May 2012 05:43:49 +0000 (13:43 +0800)]
Fix typo while resolving conflicts

12 years agoRevert "Implemented FR #61602 Allow access to name of constant used as default value"
Xinchen Hui [Wed, 23 May 2012 05:39:00 +0000 (13:39 +0800)]
Revert "Implemented FR #61602 Allow access to name of constant used as default value"

This reverts commit 054f3e3ce5af13c2c3a6ccd54f7dc3e2f6cd4f74.

See: http://news.php.net/php.cvs/69137 and the author confirmed.
Will commit later after the author fixed this then make a new PR.

Conflicts:

ext/reflection/php_reflection.c

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Tue, 22 May 2012 16:52:37 +0000 (18:52 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix bug #62109 tests\basic\bug46313-win.phpt fails
  - Fixed bug #61045 (fpm don't send error log to fastcgi clients)
  add news for new pg_ functions

Conflicts:
UPGRADING

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatoliy Belsky [Tue, 22 May 2012 16:43:10 +0000 (18:43 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug #62109 tests\basic\bug46313-win.phpt fails
  - Fixed bug #61045 (fpm don't send error log to fastcgi clients)

12 years agoFix bug #62109 tests\basic\bug46313-win.phpt fails
Anatoliy Belsky [Tue, 22 May 2012 16:41:03 +0000 (18:41 +0200)]
Fix bug #62109 tests\basic\bug46313-win.phpt fails

12 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Jerome Loyet [Tue, 22 May 2012 06:47:40 +0000 (08:47 +0200)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
  add news for new pg_ functions

12 years agoMerge branch 'PHP-5.4'
Jerome Loyet [Tue, 22 May 2012 06:42:17 +0000 (08:42 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fixed bug #61045 (fpm don't send error log to fastcgi clients)
  - fix NEWS for bug #61812

12 years ago- Fixed bug #61045 (fpm don't send error log to fastcgi clients)
Jerome Loyet [Tue, 22 May 2012 06:40:37 +0000 (08:40 +0200)]
- Fixed bug #61045 (fpm don't send error log to fastcgi clients)

12 years ago- fix NEWS for bug #61812
Jerome Loyet [Tue, 22 May 2012 06:38:09 +0000 (08:38 +0200)]
- fix NEWS for bug #61812

12 years ago- Fixed bug #61045 (fpm don't send error log to fastcgi clients)
Jerome Loyet [Tue, 22 May 2012 06:34:27 +0000 (08:34 +0200)]
- Fixed bug #61045 (fpm don't send error log to fastcgi clients)

12 years agoadd news for new pg_ functions
Stanislav Malyshev [Mon, 21 May 2012 23:12:38 +0000 (16:12 -0700)]
add news for new pg_ functions

12 years agoMerge branch 'PHP-5.4'
Felipe Pena [Mon, 21 May 2012 11:55:05 +0000 (08:55 -0300)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  - Fix the fix (typo s/AIX/_AIX/g)

12 years ago- Fix the fix (typo s/AIX/_AIX/g)
Felipe Pena [Mon, 21 May 2012 11:54:59 +0000 (08:54 -0300)]
- Fix the fix (typo s/AIX/_AIX/g)

12 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Mon, 21 May 2012 11:06:50 +0000 (19:06 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Use free instead of efree

12 years agoUse free instead of efree
Xinchen Hui [Mon, 21 May 2012 11:02:45 +0000 (19:02 +0800)]
Use free instead of efree

12 years agoMerge branch 'PHP-5.4'
Xinchen Hui [Mon, 21 May 2012 10:59:16 +0000 (18:59 +0800)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Use emalloc instead of malloc

12 years agoUse emalloc instead of malloc
Xinchen Hui [Mon, 21 May 2012 10:58:19 +0000 (18:58 +0800)]
Use emalloc instead of malloc

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Mon, 21 May 2012 10:52:33 +0000 (12:52 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fix bug #62066 Test Bug - ext/tidy/tests/004.phpt

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatoliy Belsky [Mon, 21 May 2012 10:52:10 +0000 (12:52 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug #62066 Test Bug - ext/tidy/tests/004.phpt

12 years agoFix bug #62066 Test Bug - ext/tidy/tests/004.phpt
Matt Ficken [Mon, 21 May 2012 10:51:24 +0000 (12:51 +0200)]
Fix bug #62066 Test Bug - ext/tidy/tests/004.phpt

12 years agoMerge branch 'PHP-5.4'
Anatoliy Belsky [Mon, 21 May 2012 10:38:43 +0000 (12:38 +0200)]
Merge branch 'PHP-5.4'

* PHP-5.4:
  Fixed bug #62068 Test bug - gmp_nextprime and 022
  Fix: 62067 Moved comments to FILE section
  - BFN

12 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatoliy Belsky [Mon, 21 May 2012 10:37:59 +0000 (12:37 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #62068 Test bug - gmp_nextprime and 022
  Fix: 62067 Moved comments to FILE section
  - BFN

Conflicts:
NEWS

12 years agoFixed bug #62068 Test bug - gmp_nextprime and 022
Matt Ficken [Mon, 21 May 2012 10:31:16 +0000 (12:31 +0200)]
Fixed bug #62068 Test bug - gmp_nextprime and 022

12 years agoFixed bug #61998 (Using traits with method aliases appears to result in crash during...
Dmitry Stogov [Mon, 21 May 2012 10:04:33 +0000 (14:04 +0400)]
Fixed bug #61998 (Using traits with method aliases appears to result in crash during execution)

12 years agoFixed bug #61998 (Using traits with method aliases appears to result in crash during...
Dmitry Stogov [Mon, 21 May 2012 09:57:41 +0000 (13:57 +0400)]
Fixed bug #61998 (Using traits with method aliases appears to result in crash during execution)

12 years agoFixed bug #61998 (Using traits with method aliases appears to result in crash during...
Dmitry Stogov [Mon, 21 May 2012 09:46:07 +0000 (13:46 +0400)]
Fixed bug #61998 (Using traits with method aliases appears to result in crash during execution)

12 years agoFixed bug #61998 (Using traits with method aliases appears to result in crash during...
Dmitry Stogov [Mon, 21 May 2012 08:53:21 +0000 (12:53 +0400)]
Fixed bug #61998 (Using traits with method aliases appears to result in crash during execution)

12 years ago- BFN
Felipe Pena [Sun, 20 May 2012 22:41:15 +0000 (19:41 -0300)]
- BFN

12 years ago- Fixed bug #62025 (__ss_family was changed on AIX 5.3)
Felipe Pena [Sun, 20 May 2012 22:39:54 +0000 (19:39 -0300)]
- Fixed bug #62025 (__ss_family was changed on AIX 5.3)

12 years ago- Fixed bug #62025 (__ss_family was changed on AIX 5.3)
Felipe Pena [Sun, 20 May 2012 22:37:20 +0000 (19:37 -0300)]
- Fixed bug #62025 (__ss_family was changed on AIX 5.3)

12 years ago- Fixed build using g++ (which complains about jump that crosses initialization)
Felipe Pena [Sun, 20 May 2012 19:17:17 +0000 (16:17 -0300)]
- Fixed build using g++ (which complains about jump that crosses initialization)

12 years agoNote recent changes to ext/intl in UPGRADING
Gustavo André dos Santos Lopes [Sun, 20 May 2012 18:57:06 +0000 (19:57 +0100)]
Note recent changes to ext/intl in UPGRADING

12 years agoMerge remote branch 'github/intl_calendar'
Gustavo André dos Santos Lopes [Sun, 20 May 2012 18:50:17 +0000 (19:50 +0100)]
Merge remote branch 'github/intl_calendar'

12 years agoFix: 62067 Moved comments to FILE section
zoe slattery [Sat, 19 May 2012 15:13:25 +0000 (16:13 +0100)]
Fix: 62067 Moved comments to FILE section

12 years agoFix: 62067 Moved comments to FILE section
zoe slattery [Sat, 19 May 2012 15:13:25 +0000 (16:13 +0100)]
Fix: 62067 Moved comments to FILE section