<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p><font size="+2"><tt>Package: cmake</tt></font><font size="+2"><tt><br>
          Version: 3.18.4-2</tt></font><font size="+2"><code><br>
        </code></font> </p>
    <p><font size="+2"><code>Cmake in bullseye can't find </code><tt>the
          postgresql-13 version which ships in bullseye.<br>
          This is because </tt><code class="hljs">lines 89/90 of
          /usr/share/cmake-3.18/Modules/FindPostgreSQL.cmake has this:</code></font></p>
    <p><font size="+2"><code class="hljs">   
          set(PostgreSQL_KNOWN_VERSIONS
          ${PostgreSQL_ADDITIONAL_VERSIONS}<br>
                  "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")<br>
        </code></font></p>
    <p><font size="+2"><code class="hljs">changing it to</code></font></p>
    <p><font size="+2"><code class="hljs">   
          set(PostgreSQL_KNOWN_VERSIONS
          ${PostgreSQL_ADDITIONAL_VERSIONS}<br>
                  "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")<br>
        </code></font></p>
    <font size="+2"><code class="hljs">is sufficient to correct the
        problem.</code></font>
  </body>
</html>