mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 20:50:41 +00:00
even when the same size, we should use ld over d, because..... well who really knows?
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4791 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
617d581d10
commit
429ed0b811
@ -247,10 +247,10 @@ else
|
||||
size_t_fmt='#error Can not determine the proper size for size_t'
|
||||
fi
|
||||
|
||||
if test "$ac_cv_sizeof_time_t" = "$ac_cv_sizeof_int"; then
|
||||
time_t_fmt='#define TIME_T_FMT "d"'
|
||||
elif test "$ac_cv_sizeof_time_t" = "$ac_cv_sizeof_long"; then
|
||||
time_t_fmt='#define TIME_T_FMT "ld"'
|
||||
if test "$ac_cv_sizeof_time_t" = "$ac_cv_sizeof_long"; then
|
||||
time_t_fmt='#define TIME_T_FMT "ld"'
|
||||
elif test "$ac_cv_sizeof_time_t" = "$ac_cv_sizeof_int"; then
|
||||
time_t_fmt='#define TIME_T_FMT "d"'
|
||||
elif test "$ac_cv_sizeof_time_t" = "$ac_cv_sizeof_long_long"; then
|
||||
time_t_fmt='#define TIME_T_FMT "lld"'
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user