[libpq] Fix arm64-windows build with Visual Studio 2017#26735
Closed
JackBoosY wants to merge 2 commits intomicrosoft:masterfrom
Closed
[libpq] Fix arm64-windows build with Visual Studio 2017#26735JackBoosY wants to merge 2 commits intomicrosoft:masterfrom
JackBoosY wants to merge 2 commits intomicrosoft:masterfrom
Conversation
There was a problem hiding this comment.
This is a new experimental fast check for PR issues. Please let us know if this bot is helpful!
After committing all other changes, the version database must be updated
git add -u && git commit
git checkout 1ddafcb6f62ee3488b6e32621d6aa343038a8ccc -- versions
./vcpkg x-add-version --allDiff
diff --git a/versions/baseline.json b/versions/baseline.json
index 53b0bf5..8962686 100644
--- a/versions/baseline.json
+++ b/versions/baseline.json
@@ -4010,7 +4010,7 @@
},
"libpq": {
"baseline": "14.4",
- "port-version": 0
+ "port-version": 1
},
"libpqxx": {
"baseline": "7.7.3",
diff --git a/versions/l-/libpq.json b/versions/l-/libpq.json
index f01f4c4..5d82eb9 100644
--- a/versions/l-/libpq.json
+++ b/versions/l-/libpq.json
@@ -1,5 +1,10 @@
{
"versions": [
+ {
+ "git-tree": "289842e1c5aa972bed6b6bf2af853d44a344002a",
+ "version": "14.4",
+ "port-version": 1
+ },
{
"git-tree": "2b3456bfb8b04525c44007f3c8a04b7e208d639d",
"version": "14.4",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
libpq uses 2 windows api GetUserName and SHGetFolderPath but not add the related system libs Advapi32.lib and Shell32.lib in build process.
Fix this.
cc @Neumann-A