Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 13 Dec 2012 18:28:18 +0100
From: John Spencer <maillist-musl@...fooze.de>
To: musl@...ts.openwall.com
Subject: Re: FreeSWITCH build, timerfd macros

On 12/13/2012 12:23 PM, ojab wrote:
> Hi list,
>
> glibc's timerfd.h has some defines, which doesn't exist in musl.
>
> One of them — TFD_TIMER_ABSTIME, which is basically
> #define TFD_TIMER_ABSTIME (1 << 0)
>
> is used by FreeSWITCH, so right now FS build fails with
>> src/switch_time.c:827:29: error: 'TFD_TIMER_ABSTIME' undeclared 
>> (first use in this function)

to make it work you can simply add -DTFD_TIMER_ABSTIME=1 to your CFLAGS.
for example:
CFLAGS="-DTFD_TIMER_ABSTIME=1" ./configure --blah --blah


Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.