ssl: Include limits.h to get INT_MAX when using LibreSSL

When compiling against OpenSSL, the <limits.h> header is indirectly
included via openssl/ossl_typ.h from openssl/conf.h, but the LibreSSL
version of ossl_typ.h does not include <limits.h> which cause compiler
failure due to missing symbol (since ffd080d94f).  Fix by explicitly
including <limits.h>.

Author: Daniel Gustafsson <dgustafsson@postgresql.org>
Discussion: https://www.postgresql.org/message-id/6A9E7815-BD5A-4C31-A515-48159823406B@yesql.se
Backpatch-through: 14
This commit is contained in:
Heikki Linnakangas 2026-07-09 18:34:24 +03:00
parent dff789e555
commit d293f03455

View file

@ -25,6 +25,7 @@
#include <signal.h>
#include <fcntl.h>
#include <ctype.h>
#include <limits.h>
#include "libpq-fe.h"
#include "fe-auth.h"