[Freeswitch-svn] [commit] r4791 - freeswitch/trunk
Freeswitch SVN
mikej at freeswitch.org
Thu Mar 29 08:53:13 EDT 2007
Author: mikej
Date: Thu Mar 29 08:53:12 2007
New Revision: 4791
Modified:
freeswitch/trunk/configure.in
Log:
even when the same size, we should use ld over d, because..... well who really knows?
Modified: freeswitch/trunk/configure.in
==============================================================================
--- freeswitch/trunk/configure.in (original)
+++ freeswitch/trunk/configure.in Thu Mar 29 08:53:12 2007
@@ -247,10 +247,10 @@
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
More information about the Freeswitch-svn
mailing list