jerenkrantz 2003/11/16 16:20:45
Modified: . configure.in
Log:
Remove 'long double' configure check as it's not an integral type.
According to ViewCVS/cvs annotate, this dates to r1.28 of configure.in.
Submitted by: Will Rowe
Reviewed by: Jeff Trawick, Justin Erenkrantz
Revision Changes Path
1.554 +0 -9 apr/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr/configure.in,v
retrieving revision 1.553
retrieving revision 1.554
diff -u -u -r1.553 -r1.554
--- configure.in 17 Nov 2003 00:09:17 -0000 1.553
+++ configure.in 17 Nov 2003 00:20:44 -0000 1.554
@@ -1080,15 +1080,6 @@
int64_value="long long"
long_value="long long"
int64_strfn="strtoll"
-elif test "$ac_cv_sizeof_long_double" = "8"; then
- int64_literal='#define APR_INT64_C(val) (val##LD)'
- uint64_literal='#define APR_UINT64_C(val) (val##ULD)'
- int64_t_fmt='#define APR_INT64_T_FMT "Ld"'
- uint64_t_fmt='#define APR_UINT64_T_FMT "Lu"'
- uint64_t_hex_fmt='#define APR_UINT64_T_HEX_FMT "Lx"'
- int64_value="long double"
- long_value="long double"
- int64_strfn="strtoll"
elif test "$ac_cv_sizeof_longlong" = "8"; then
int64_literal='#define APR_INT64_C(val) (val##LL)'
uint64_literal='#define APR_UINT64_C(val) (val##ULL)'