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:29:36 +1300
commit648333a99f56058abd9abdeb87ab0b9e97709d91 (patch)
treecba0a9ec98d95239e23b314ea2413c3e732ca1b7
parent5980f1884fc911af120c98ad440b9546ed9012c5 (diff)
downloadpostgresql-648333a99f56058abd9abdeb87ab0b9e97709d91.tar.gz
postgresql-648333a99f56058abd9abdeb87ab0b9e97709d91.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 b55faea7f5f..83e61d0f4a8 100644
--- a/meson.build
+++ b/meson.build
@@ -2387,7 +2387,6 @@ header_checks = [
'getopt.h',
'ifaddrs.h',
'mbarrier.h',
- 'stdbool.h',
'strings.h',
'sys/epoll.h',
'sys/event.h',