Skip to content

Commit 2fe65a7

Browse files
committed
* configure.in: Use consistent reporting of detected integer
sizes/format/parsing (cosmetic change only). GitHub: pr #68 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1927743 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1eea457 commit 2fe65a7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

configure.in

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,6 +1927,8 @@ else
19271927
AC_ERROR([could not detect a 64-bit integer type])
19281928
fi
19291929

1930+
AC_MSG_NOTICE([for apr_(u)int64_t using $int64_strfn and ${int64_value}/${uint64_value}])
1931+
19301932
# If present, allow the C99 macro INT64_C to override our conversion.
19311933
#
19321934
# HP-UX's ANSI C compiler provides this without any includes, so we
@@ -2108,7 +2110,6 @@ else
21082110
aprlfs=0
21092111
fi
21102112

2111-
AC_MSG_CHECKING([which type to use for apr_off_t])
21122113
if test "${ac_cv_sizeof_off_t}${apr_cv_use_lfs64}" = "4yes"; then
21132114
# LFS is go!
21142115
off_t_fmt='#define APR_OFF_T_FMT APR_INT64_T_FMT'
@@ -2164,7 +2165,7 @@ else
21642165
off_t_strfn='strtoi'
21652166
off_t_size=4
21662167
fi
2167-
AC_MSG_RESULT($off_t_value)
2168+
AC_MSG_NOTICE([for apr_off_t using $off_t_strfn and $off_t_value])
21682169

21692170

21702171
# Regardless of whether _LARGEFILE64_SOURCE is used, on some
@@ -2196,7 +2197,7 @@ case $host in
21962197
fi
21972198
;;
21982199
esac
2199-
AC_MSG_NOTICE([using $ino_t_value for ino_t])
2200+
AC_MSG_NOTICE([for apr_ino_t using $ino_t_value])
22002201

22012202
# Checks for endianness
22022203
AC_C_BIGENDIAN

0 commit comments

Comments
 (0)