special case

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14069 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-06-30 21:54:56 +00:00
parent 7855539581
commit 764b7958bd
1 changed files with 10 additions and 0 deletions

View File

@ -487,6 +487,16 @@ elif test "$ac_cv_sizeof_long" = "8"; then
uint64_t_fmt='#define SWITCH_UINT64_T_FMT "lu"'
int64_value="long"
long_value=long
case "$host" in
*-solaris2*)
if test "$ac_cv_sizeof_long_long" = "8"; then
int64_t_fmt='#define SWITCH_INT64_T_FMT "lld"'
uint64_t_fmt='#define SWITCH_UINT64_T_FMT "llu"'
int64_value="long long"
long_value="long long"
fi
;;
esac
elif test "$ac_cv_sizeof_long_long" = "8"; then
int64_t_fmt='#define SWITCH_INT64_T_FMT "lld"'
uint64_t_fmt='#define SWITCH_UINT64_T_FMT "llu"'