Package: cmake
Version: 3.18.4-2|
|

|Cmake in bullseye can't find |the postgresql-13 version which ships in bullseye. This is because |lines 89/90 of /usr/share/cmake-3.18/Modules/FindPostgreSQL.cmake has this:|

|set(PostgreSQL_KNOWN_VERSIONS ${PostgreSQL_ADDITIONAL_VERSIONS}
        "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")
|

|changing it to|

|set(PostgreSQL_KNOWN_VERSIONS ${PostgreSQL_ADDITIONAL_VERSIONS}
        "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")
|

|is sufficient to correct the problem.|

Reply via email to