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
CMake: added missing HAVE_BUILTIN_AVAILABLE, HAVE_CLOCK_GETTIME_MONOTONIC #3097
Conversation
…missing test for HAVE_CLOCK_GETTIME_MONOTONIC
@snikulov, here is new pull request. |
@bagder Daniel, can I merge this one? |
Please do, but also please amend the commit message as it doesn't really follow our style - and a "closes #3097" would be great then as well. (Ie: don't use the github merge button.) |
@bagder landed on master. |
We don't do merge commits, please rebase it properly next time. And we don't force-push on master. Ever. |
@snikulov Do you know https://github.com/curl/curl/wiki/push-access-guidelines#how-to-work-with-a-pr-branch? That's what I'm trying to do, except that I'm doing the |
@MarcelRaad Thanks for the tip. |
(Those instructions are hard-coded by github itself, we can't change them.) That would just make the merge fail very often. Just do it like this instead:
... verify with
If there are multiple commits and you'd rather squash a few (I personally like to just 'f'ixup them), just do -i on the rebase line:
|
Added missing HAVE_BUILTIN_AVAILABLE (define and test), HAVE_CLOCK_GETTIME_MONOTONIC (test). Tested with CMake on Apple OSX and Android NDK (r17b, Windows).