Skip to content

Commit

Permalink
Fix: Support building against PostgeSQL 15
Browse files Browse the repository at this point in the history
Add PostgreSQL 15 to the known versions. This allows building gvmd
against the lastest PostgeSQL release which is also shipped with Debian
12 (bookworm).
  • Loading branch information
bjoernricks committed Jun 16, 2023
1 parent b034a1e commit 2a93ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/FindPostgreSQL.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ set(PostgreSQL_ROOT_DIR_MESSAGE "Set the PostgreSQL_ROOT system variable to wher


set(PostgreSQL_KNOWN_VERSIONS ${PostgreSQL_ADDITIONAL_VERSIONS}
"14" "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0")
"15" "14" "13" "12" "11" "10" "9.6" "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0")

# Define additional search paths for root directories.
set( PostgreSQL_ROOT_DIRECTORIES
Expand Down

0 comments on commit 2a93ac3

Please sign in to comment.