Hey:

   sorry for top reply:

   for people who didn't know the context:

   we were talking about remove all #if PHP_MAJOR_VERSION >= ?? in exts

   which means, remove all old version supports in master..

   what do you think?

thanks

On Fri, Aug 15, 2014 at 11:28 PM, Pierre Joye <pierre....@gmail.com> wrote:
> adding mysql@ to the list and move to internals, we should do that for
> other parts as well but extensions being actively maintained in pecl
> too (while they will most likely have a separate branche for 7+
> anyway.
>
> On Fri, Aug 15, 2014 at 5:05 PM, Laruence <larue...@php.net> wrote:
>> Hey:
>>
>>
>> On Fri, Aug 15, 2014 at 9:48 PM, Pierre Joye <pierre....@gmail.com> wrote:
>>> On Fri, Aug 15, 2014 at 12:21 PM, Xinchen Hui <larue...@php.net> wrote:
>>>> Commit:    7ace092abfec31749da230405a7298d9b5789f43
>>>> Author:    Xinchen Hui <larue...@php.net>         Fri, 15 Aug 2014 
>>>> 18:21:23 +0800
>>>> Parents:   29893a88e7cdf93f9ce80ce7eaecffb3ef5e30c9
>>>> Branches:  master
>>>>
>>>> Link:       
>>>> http://git.php.net/?p=php-src.git;a=commitdiff;h=7ace092abfec31749da230405a7298d9b5789f43
>>>>
>>>> Log:
>>>> Fixed version check
>>>>
>>>> Changed paths:
>>>>   M  ext/mysqli/mysqli.c
>>>>
>>>>
>>>> Diff:
>>>> diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c
>>>> index 43d471d..9374737 100644
>>>> --- a/ext/mysqli/mysqli.c
>>>> +++ b/ext/mysqli/mysqli.c
>>>> @@ -585,7 +585,7 @@ PHP_MINIT_FUNCTION(mysqli)
>>>>         mysqli_object_handlers.write_property = mysqli_write_property;
>>>>         mysqli_object_handlers.get_property_ptr_ptr = 
>>>> std_hnd->get_property_ptr_ptr;
>>>>         mysqli_object_handlers.has_property = mysqli_object_has_property;
>>>> -#if PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 3
>>>> +#if PHP_VERSION_ID >= 53000
>>>>         mysqli_object_handlers.get_debug_info = 
>>>> mysqli_object_get_debug_info;
>>>>  #endif
>>>>         memcpy(&mysqli_object_driver_handlers, &mysqli_object_handlers, 
>>>> sizeof(zend_object_handlers));
>>>
>>> Given the amount of changes in the extensions I wonder why we even
>>> keep this kind of things in master. Could we not simply clean that up?
>> personally, I also want to do that.
>>
>> but maybe the maintainer of the ext want to keep it.....
>>
>> thanks
>>>
>>> Cheers,
>>> --
>>> Pierre
>>>
>>> @pierrejoye | http://www.libgd.org
>>
>>
>>
>> --
>> Laruence  Xinchen Hui
>> http://www.laruence.com/
>
>
>
> --
> Pierre
>
> @pierrejoye | http://www.libgd.org



-- 
Laruence  Xinchen Hui
http://www.laruence.com/

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to