-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
big file support #51
big file support #51
Conversation
FWIW I tried setting the unpack _fmt to use
So I think we should stick to only changing the format for the one field for now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you think about adding a version check that still uses Z for 5.4 ? Maybe that would resolve the build test failure, and allow us to not yet be forced to drop older support.
Can give it a try, but it looks like 5.4 might still be failing with the same problem we're trying to fix.. so I don't know that special-casing it will help. Personally I'd be happy saying that PHP 5.6 is the oldest we'll try to support. |
Hi, sorry I think I misunderstood the suggestion / had forgotten that there was already a version check in the code. Let's try just using the same format for all versions and see if it works on PHP 5.4. Okay, looks like that didn't work. Did you want to try a Looks like the old change records suggest that Z is only a thing after PHP 5.5 |
This reverts commit 6b91932.
@ashnazg I think we've tried the We could perhaps put some logic in the test to skip PHP 5.4. I'm more inclined to drop explicit support for PHP 5.4 though if we can't make this work. I don't think many linux distros - if any - still support it. |
My fault, I was assuming the 5.4 test failure was related to the a/Z change, but looking more closely now, I do not think that's the case. Let's merge this, and I'll look at that separately. |
Trying to address the 5.4 |
Working on a fix for #50