Skip to content
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

Remove workarounds for PostgreSQL static build #600

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions Rakefile.cross
Original file line number Diff line number Diff line change
Expand Up @@ -202,18 +202,6 @@ class CrossLibrary < OpenStruct

# make libpq.dll
task postgresql_lib => [ postgresql_global_makefile ] do |t|
# Work around missing dependency to libcommon in PostgreSQL-9.4.0
chdir( static_postgresql_srcdir + "common" ) do
sh 'make', "-j#{NUM_CPUS}"
end
# Work around missing dependency to errorcodes.h in PostgreSQL-17.0
chdir( static_postgresql_srcdir + "backend" + "utils" ) do
sh 'make', "-j#{NUM_CPUS}"
end
chdir( static_postgresql_srcdir + "port" ) do
sh 'make', "-j#{NUM_CPUS}"
end

chdir( postgresql_lib.dirname ) do
sh 'make',
"-j#{NUM_CPUS}",
Expand Down
Loading