Skip to content

Commit

Permalink
Merge pull request #68 from sgrif/bump/postgres_17
Browse files Browse the repository at this point in the history
Update bundled libpq version to postgres 17
  • Loading branch information
weiznich authored Sep 27, 2024
2 parents efca560 + c300b02 commit 2808922
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ jobs:
- name: Test compile diesel
shell: bash
# allow to fail as diesel might not pull in the right feature yet
continue-on-error: true
run: |
cargo new test_diesel
cd test_diesel
Expand Down
6 changes: 4 additions & 2 deletions pq-src/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const LIBPORTS_BASE: &[&str] = &[
"explicit_bzero.c",
];

const LIBPORTS_LINUX: &[&str] = &["getpeereid.c", "thread.c"];
const LIBPORTS_LINUX: &[&str] = &["getpeereid.c", "user.c"];

const LIBPORTS_MACOS: &[&str] = &["thread.c"];
const LIBPORTS_MACOS: &[&str] = &["user.c"];

const LIBPORTS_WINDOWS: &[&str] = &[
"getpeereid.c",
Expand All @@ -46,6 +46,7 @@ const LIBPORTS_WINDOWS: &[&str] = &[
"win32security.c",
"win32setlocale.c",
"win32stat.c",
"win32gai_strerror.c",
"open.c",
"dirmod.c",
"inet_aton.c",
Expand Down Expand Up @@ -96,6 +97,7 @@ const LIBCOMMON_WINDOWS: &[&str] = &["wchar.c"];
const LIBPQ_BASE: &[&str] = &[
"fe-auth-scram.c",
"fe-auth.c",
"fe-cancel.c",
"fe-connect.c",
"fe-exec.c",
"fe-lobj.c",
Expand Down
2 changes: 1 addition & 1 deletion pq-src/source
Submodule source updated 3828 files

0 comments on commit 2808922

Please sign in to comment.