From b82e7eddb023ade0739002b3ef05939ea6937e57 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Thu, 3 Apr 2025 13:57:27 +0200 Subject: [PATCH] Add missing declarations to pg_config.h.in Add missing pg_config.h.in declarations from 09be39112654 where the corresponding autoconf/meson declarations were added. Reviewed-by: Heikki Linnakangas Discussion: https://postgr.es/m/70145721-6949-4ABF-BB54-63F866488DF8@yesql.se --- src/include/pg_config.h.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/include/pg_config.h.in b/src/include/pg_config.h.in index 2428e4f854f..c2f1241b234 100644 --- a/src/include/pg_config.h.in +++ b/src/include/pg_config.h.in @@ -123,6 +123,10 @@ */ #undef HAVE_DECL_STRSEP +/* Define to 1 if you have the declaration of `timingsafe_bcmp', and to 0 if + you don't. */ +#undef HAVE_DECL_TIMINGSAFE_BCMP + /* Define to 1 if you have the header file. */ #undef HAVE_EDITLINE_HISTORY_H @@ -455,6 +459,9 @@ /* Define to 1 if curl_global_init() is guaranteed to be thread-safe. */ #undef HAVE_THREADSAFE_CURL_GLOBAL_INIT +/* Define to 1 if you have the `timingsafe_bcmp' function. */ +#undef HAVE_TIMINGSAFE_BCMP + /* Define to 1 if your compiler understands `typeof' or something similar. */ #undef HAVE_TYPEOF -- 2.30.2