-
Notifications
You must be signed in to change notification settings - Fork 7.1k
[civetweb] Update to version 1.12 #10591
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
Conversation
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.
Thanks for your PR!
include(vcpkg_common_functions)
is no longer needed, could you please remove this line?- Could you please modify
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
message(FATAL_ERROR "${PORT} does not currently support UWP")
endif()
as below:
vcpkg_fail_port_install(MESSAGE "${PORT} does not currently support UWP" ON_TARGET "UWP")
- Could you please modify
configure_file(${SOURCE_PATH}/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/civetweb/copyright COPYONLY)
as below:
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
Thanks for the review. I addressed all of your comments and re-tested locally. |
@gjasny |
@Cheney-W done |
@gjasny Thanks for your PR. I have tested this PR on Linux and MACOS, and it passed. Please remove the below lines from |
@gjasny Could you address Lily's suggestion? Thanks! |
Sorry, I must have missed the notification email. |
Alright, this looks great! Thanks @gjasny :) |
Update civetweb from snapshot release to regular 1.12 release. Tested locally on MacOS against prometheus-cpp.