From: Tilghman Lesher Date: Tue, 8 Jun 2010 06:16:43 +0000 (+0000) Subject: Fix trunk build on Mac OS X. X-Git-Tag: 11.0.0-beta1~2886 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8872926df7acdfa78530049a0dc63900590c3123;p=thirdparty%2Fasterisk.git Fix trunk build on Mac OS X. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@268896 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils/extconf.c b/utils/extconf.c index ff17b9663e..992126728d 100644 --- a/utils/extconf.c +++ b/utils/extconf.c @@ -6255,3 +6255,13 @@ int localized_pbx_load_module(void) return 0; } +/* For platforms which don't have pthread_rwlock_timedrdlock() */ +struct timeval ast_tvnow(void); + +struct timeval ast_tvnow(void) +{ + struct timeval t; + gettimeofday(&t, NULL); + return t; +} +