WebSockets: make support official (non-experimental) - #14936
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
44bb28a to
8f78651
Compare
8f78651 to
4aa5eca
Compare
Inverts the configure/cmake options to instead provide options that disable WebSockets and have them (ws + wss) enabled by default. Closes #14936
4aa5eca to
eff96e6
Compare
eff96e6 to
5875b13
Compare
Inverts the configure/cmake options to instead provide options that disable WebSockets and have them (ws + wss) enabled by default. Closes #14936
aea3618 to
af1473b
Compare
Not in the release notes. 😞 Lines 49 to 64 in b1ef0e1 Another thing to patch out? |
It's useful to know how curl was built when debugging, though not supercritical to have this in Is there a better method to read the cmake command-line? |
It has the side-effect of silencing CMake warnings about unused variables passed via the command-line. Drop it till a better method is found to retrieve this. Reported-by: Kai Pastor Ref: curl#14936 (comment) Follow-up to 1fdea16 curl#14802
It doesn't matter. You cannot assume to see the complete actual configuration in the command line of a single invocation. Input variables = cache variables. I can re-run cmake with no parameters, or I can change a single parameter. And then there are presets etc. What you have is CMakeCache.txt ;-) |
In many cases the command-line tells enough to be useful.
Yes, there is also |
... assuming a single invocation of CMake for configuration purposes. |
Collecting the args list has the undesired side-effect of silencing CMake warnings about unused variables passed via the command-line. Drop it till a better method is found to retrieve them. Reported-by: Kai Pastor Ref: #14936 (comment) Follow-up to 1fdea16 #14802 Closes #15501
Inverts the configure/cmake options to instead provide options that disable WebSockets and have them (ws + wss) enabled by default. Closes curl#14936
- restore change lost after websockets-default update. Ref: 6a1dcdc curl#14998 - delete unused line after websockets is on by default. Follow-up to d78e129 curl#14936 Closes curl#15078
Collecting the args list has the undesired side-effect of silencing CMake warnings about unused variables passed via the command-line. Drop it till a better method is found to retrieve them. Reported-by: Kai Pastor Ref: curl#14936 (comment) Follow-up to 1fdea16 curl#14802 Closes curl#15501
Inverts the configure/cmake options to instead provide options that disable WebSockets and have them (ws + wss) enabled by default.