aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Munro <tmunro@postgresql.org>2024-11-26 11:29:31 +1300
committerThomas Munro <tmunro@postgresql.org>2024-11-26 11:32:39 +1300
commit5609b474dba3f8e4874fa8ac08a98f4f00bd063c (patch)
treed6498ce9a1322e7f9087e61bc00bf365920515fe
parent1f4aadec41b8655e4e37c18c3c11552091ef7123 (diff)
downloadpostgresql-5609b474dba3f8e4874fa8ac08a98f4f00bd063c.tar.gz
postgresql-5609b474dba3f8e4874fa8ac08a98f4f00bd063c.zip
Clean up <stdbool.h> reference in meson.build.
Commit bc5a4dfc accidentally left a check for <stdbool.h> in meson.build's header_checks. Synchronize with configure, which no longer defines HAVE_STDBOOL_H. There is still a reference to <stdbool.h> in an earlier test to see if we need -std=c99 to get C99 features, like autoconf 2.69's AC_PROG_CC_C99. (Therefore the test remove by this commit was tautological since day one: you'd have copped "C compiler does not support C99" before making it this far.) Back-patch to 16, where meson begins.
-rw-r--r--meson.build1
1 files changed, 0 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bab28893285..8ea42dea81f 100644
--- a/meson.build
+++ b/meson.build
@@ -2258,7 +2258,6 @@ header_checks = [
'ifaddrs.h',
'langinfo.h',
'mbarrier.h',
- 'stdbool.h',
'strings.h',
'sys/epoll.h',
'sys/event.h',