diff options
author | Peter Eisentraut | 2025-01-05 10:30:48 +0000 |
---|---|---|
committer | Peter Eisentraut | 2025-01-05 10:34:28 +0000 |
commit | 9a8313dabe5ebb6a99d9a165d3c9bc3fa0213088 (patch) | |
tree | 29193cd48a5c95cc5450395faa8814521c9039d5 /configure | |
parent | 6549a02a51e88960cccb938999a43203e335d0cc (diff) |
Remove useless configure check
The test for "decltype" as a variant of "typeof" apparently never
worked (see also commit 3582b223d49), so remove it.
Discussion: https://www.postgresql.org/message-id/flat/795b1c54-c64a-47f9-8fa3-880dcab59975%40eisentraut.org
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index ac69bc63434..a0b5e10ca39 100755 --- a/configure +++ b/configure @@ -14344,7 +14344,7 @@ if ${pgac_cv_c_typeof+:} false; then : $as_echo_n "(cached) " >&6 else pgac_cv_c_typeof=no -for pgac_kw in typeof __typeof__ decltype; do +for pgac_kw in typeof __typeof__; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ |