diff options
author | Daniel Gustafsson | 2025-04-03 11:57:27 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2025-04-03 11:57:27 +0000 |
commit | b82e7eddb023ade0739002b3ef05939ea6937e57 (patch) | |
tree | ac9223f0388304fd01a91614a1b1f949a48755f4 | |
parent | 2da74d8d6400975bf73fb0df97c3943ad3ed9a36 (diff) |
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 <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/70145721-6949-4ABF-BB54-63F866488DF8@yesql.se
-rw-r--r-- | src/include/pg_config.h.in | 7 |
1 files changed, 7 insertions, 0 deletions
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 <editline/history.h> 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 |