From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2453 Path: news.gmane.org!not-for-mail From: ojab Newsgroups: gmane.linux.lib.musl.general Subject: FreeSWITCH build, timerfd macros Date: Thu, 13 Dec 2012 15:23:46 +0400 Message-ID: <50C9BAC2.1090806@ojab.ru> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1355397924 19772 80.91.229.3 (13 Dec 2012 11:25:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Dec 2012 11:25:24 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-2454-gllmg-musl=m.gmane.org@lists.openwall.com Thu Dec 13 12:25:37 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Tj6v0-0000VX-Kk for gllmg-musl@plane.gmane.org; Thu, 13 Dec 2012 12:25:34 +0100 Original-Received: (qmail 1618 invoked by uid 550); 13 Dec 2012 11:25:21 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 1610 invoked from network); 13 Dec 2012 11:25:21 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding:x-gm-message-state; bh=9+Y2/01q16wIApPKJl5DnYd8iE2EJJJms+TZD/Z2lqc=; b=DB16Vq+XHioe57XdGg4hjAhZOvEPAwf03DQmEiHtxUJDGsodwTu6dcx9wpnJOU0gRE QRVpjmZwNkZLrGe5im0sKEAhZk5sk1eJ/KKhIlcBXFbMceAsvYoi9++WafRSJPnOCXX5 LVtYlviDAwLecOuGhu7I0r0qj/jCAPPi7zcks212Ts7TbzWepmK4AbLANZu0TF4g9whJ GPg0nEd6oyK9RgpvzizkHjhhDlhIh8WwGksswSXS5sbT+P0N9mvvYQMW4eTu4/+ACOl7 U7CAJDuLy/1wmGeRixDSx1HSo8NVJmNTQdV/B9BXew9r1PFNoqhALaPvgCly+RcwaSrn zizA== User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:20.0) Gecko/20100101 Thunderbird/20.0a1 X-Gm-Message-State: ALoCoQlCndiQaigVSfZdi5cE8DYcsSAaBtBXMJIA52mCVnmhoOMXywgVO3KKhLG7uTd1y+mKjCQb Xref: news.gmane.org gmane.linux.lib.musl.general:2453 Archived-At: 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) Can this macro be added to musl? //wbr ojab