From: Thomas Munro Date: Mon, 25 Nov 2024 22:29:31 +0000 (+1300) Subject: Clean up reference in meson.build. X-Git-Tag: REL_17_3~138 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aefbd6c29fa984e9ab1fd4b0b5d3e3fce4b18b03;p=thirdparty%2Fpostgresql.git Clean up reference in meson.build. Commit bc5a4dfc accidentally left a check for in meson.build's header_checks. Synchronize with configure, which no longer defines HAVE_STDBOOL_H. There is still a reference to 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. --- diff --git a/meson.build b/meson.build index 48ba6f27531..005dc9f3532 100644 --- a/meson.build +++ b/meson.build @@ -2407,7 +2407,6 @@ header_checks = [ 'ifaddrs.h', 'langinfo.h', 'mbarrier.h', - 'stdbool.h', 'strings.h', 'sys/epoll.h', 'sys/event.h',