diff options
| author | Tom Lane | 2018-05-19 18:22:19 +0000 |
|---|---|---|
| committer | Tom Lane | 2018-05-19 18:22:19 +0000 |
| commit | 8109f201da7745477519e0e151b900a6aeca6e69 (patch) | |
| tree | 01eb83590dae9cdc351be960c1793a738efe85ef /configure | |
| parent | 023aa76e19529bf3f00f1815262fc78186c01636 (diff) | |
Support platforms where strtoll/strtoull are spelled __strtoll/__strtoull.
Ancient HPUX, for one, does this. We hadn't noticed due to the lack
of regression tests that required a working strtoll.
(I was slightly tempted to remove the other historical spelling,
strto[u]q, since it seems we have no buildfarm members testing that case.
But I refrained.)
Discussion: https://postgr.es/m/151935568942.1461.14623890240535309745@wrigleys.postgresql.org
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index e124bfe5cc0..c335bd45565 100755 --- a/configure +++ b/configure @@ -12419,7 +12419,7 @@ $as_echo "#define HAVE_INT_OPTRESET 1" >>confdefs.h fi -for ac_func in strtoll strtoq +for ac_func in strtoll __strtoll strtoq do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" @@ -12431,7 +12431,7 @@ _ACEOF fi done -for ac_func in strtoull strtouq +for ac_func in strtoull __strtoull strtouq do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |
