@@ -866,7 +866,6 @@ with_system_tzdata
866
866
with_zlib
867
867
with_gnu_ld
868
868
enable_largefile
869
- enable_float4_byval
870
869
enable_float8_byval
871
870
'
872
871
ac_precious_vars='build_alias
@@ -1525,7 +1524,6 @@ Optional Features:
1525
1524
--enable-cassert enable assertion checks (for debugging)
1526
1525
--disable-thread-safety disable thread-safety in client libraries
1527
1526
--disable-largefile omit support for large files
1528
- --disable-float4-byval disable float4 passed by value
1529
1527
--disable-float8-byval disable float8 passed by value
1530
1528
1531
1529
Optional Packages:
@@ -16747,46 +16745,6 @@ _ACEOF
16747
16745
16748
16746
16749
16747
16750
- # Decide whether float4 is passed by value: user-selectable, enabled by default
16751
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build with float4 passed by value" >&5
16752
- $as_echo_n "checking whether to build with float4 passed by value... " >&6; }
16753
-
16754
-
16755
- # Check whether --enable-float4-byval was given.
16756
- if test "${enable_float4_byval+set}" = set; then :
16757
- enableval=$enable_float4_byval;
16758
- case $enableval in
16759
- yes)
16760
-
16761
- $as_echo "#define USE_FLOAT4_BYVAL 1" >>confdefs.h
16762
-
16763
- float4passbyval=true
16764
- ;;
16765
- no)
16766
- float4passbyval=false
16767
- ;;
16768
- *)
16769
- as_fn_error $? "no argument expected for --enable-float4-byval option" "$LINENO" 5
16770
- ;;
16771
- esac
16772
-
16773
- else
16774
- enable_float4_byval=yes
16775
-
16776
- $as_echo "#define USE_FLOAT4_BYVAL 1" >>confdefs.h
16777
-
16778
- float4passbyval=true
16779
- fi
16780
-
16781
-
16782
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_float4_byval" >&5
16783
- $as_echo "$enable_float4_byval" >&6; }
16784
-
16785
- cat >>confdefs.h <<_ACEOF
16786
- #define FLOAT4PASSBYVAL $float4passbyval
16787
- _ACEOF
16788
-
16789
-
16790
16748
# Decide whether float8 is passed by value.
16791
16749
# Note: this setting also controls int8 and related types such as timestamp.
16792
16750
# If sizeof(Datum) >= 8, this is user-selectable, enabled by default.