diff --git a/configure.in b/configure.in index 8cc7e593e6..818611785c 100644 --- a/configure.in +++ b/configure.in @@ -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"' diff --git a/src/switch_apr.c b/src/switch_apr.c index f622a1cb48..fade0caf27 100644 --- a/src/switch_apr.c +++ b/src/switch_apr.c @@ -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)