diff options
author | Thomas Munro <tmunro@postgresql.org> | 2024-08-13 22:13:52 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2024-08-13 22:13:52 +1200 |
commit | 14c648ff009438830d15de7c8a93c2b29114eb1c (patch) | |
tree | e57013d885e4b82b000d342d408c1c8c2e2d3475 /src/include | |
parent | 93660d1c27b1b85e84621326c0e2c89e00c3fc6f (diff) |
All POSIX systems have langinfo.h and CODESET.
We don't need configure probes for HAVE_LANGINFO_H (it is implied by
!WIN32), and we don't need to consider systems that have it but don't
define CODESET (that was for OpenBSD in commit 81cca218, but it has now
had it for 19 years).
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/CA%2BhUKGJqVe0%2BPv9dvC9dSums_PXxGo9SWcxYAMBguWJUGbWz-A%40mail.gmail.com
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/pg_config.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 0e9b108e667..979925cc2e2 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -238,9 +238,6 @@ /* Define to 1 if you have the `kqueue' function. */ #undef HAVE_KQUEUE -/* Define to 1 if you have the <langinfo.h> header file. */ -#undef HAVE_LANGINFO_H - /* Define to 1 if you have the `ldap_initialize' function. */ #undef HAVE_LDAP_INITIALIZE |