From a7d94c99b44eb567fc3f67e197890f659778a814 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Thu, 23 Jul 2009 20:22:31 +0000 Subject: [PATCH] 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 --- configure.in | 2 +- src/switch_apr.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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)