提交 a7d94c99 authored 作者: Michael Jerris's avatar Michael Jerris

build: fix compile on Mac OS X Snow Leopard 10.6 (FSBUILD-178)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14333 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 e2da0849
......@@ -488,7 +488,7 @@ elif test "$ac_cv_sizeof_long" = "8"; then
int64_value="long"
long_value=long
case "$host" in
*-solaris2*)
*-solaris2*|*apple-darwin*)
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"'
......
......@@ -318,12 +318,12 @@ SWITCH_DECLARE(switch_time_t) switch_time_now(void)
SWITCH_DECLARE(switch_status_t) switch_time_exp_gmt_get(switch_time_t *result, switch_time_exp_t *input)
{
return apr_time_exp_gmt_get(result, (apr_time_exp_t *) input);
return apr_time_exp_gmt_get((apr_time_t *)result, (apr_time_exp_t *) input);
}
SWITCH_DECLARE(switch_status_t) switch_time_exp_get(switch_time_t *result, switch_time_exp_t *input)
{
return apr_time_exp_get(result, (apr_time_exp_t *) input);
return apr_time_exp_get((apr_time_t *)result, (apr_time_exp_t *) input);
}
SWITCH_DECLARE(switch_status_t) switch_time_exp_lt(switch_time_exp_t *result, switch_time_t input)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论