From patchwork Fri May 29 22:38:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Khem Raj X-Patchwork-Id: 6511781 Return-Path: X-Original-To: patchwork-alsa-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 11A909F38C for ; Fri, 29 May 2015 22:39:15 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3FE6E207C3 for ; Fri, 29 May 2015 22:39:14 +0000 (UTC) Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.kernel.org (Postfix) with ESMTP id 19CCC207C0 for ; Fri, 29 May 2015 22:39:13 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 631A62669A4; Sat, 30 May 2015 00:39:11 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=no version=3.3.1 Received: from alsa0.perex.cz (localhost [IPv6:::1]) by alsa0.perex.cz (Postfix) with ESMTP id C2718266979; Sat, 30 May 2015 00:39:03 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 0BFF526697D; Sat, 30 May 2015 00:39:02 +0200 (CEST) Received: from mail-ig0-f182.google.com (mail-ig0-f182.google.com [209.85.213.182]) by alsa0.perex.cz (Postfix) with ESMTP id D318E266972 for ; Sat, 30 May 2015 00:38:54 +0200 (CEST) Received: by igbjd9 with SMTP id jd9so25386698igb.1 for ; Fri, 29 May 2015 15:38:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=l0IMBL80m1BB7g6AYQYfQM3tFk79QTat/833p37nUY0=; b=TcyIisqo8Oiw1hNJI8IB4gI3tLFcLNCcB/fNugG0MlxZEwSw938fS1Fs+pnmXgkCSO PTTCyCMsTEcbU5SJJqlACW/eh5zUSrmGIt6ehywA8VvDeSGcqVO56FtWL757O2RzmcRr i5Oxnh2U2JMoSJ8PLAFtxoKwfFZB6cLcRv6zemX5Pam4Yue7Xg7DOytDDAWakE8cuEtk 1V7uOgLXtYM478cMvuozjhzr44EnC/f5/OS7oq9yVMCLDYYfuvzk9aHUdPmR0u4txLUM WzLEyxD++jq1O/6zrTAmicyQAr0NwQ2ROK5KBd/OsHEd7AsCGZwpyymz9Cro1I0FiL3y 8IlA== X-Received: by 10.43.39.208 with SMTP id tn16mr17151475icb.27.1432939134029; Fri, 29 May 2015 15:38:54 -0700 (PDT) Received: from dvm-ch2e-038.sys.comcast.net (a-96-119-89-79.sys.comcast.net. [96.119.89.79]) by mx.google.com with ESMTPSA id h138sm5166465ioe.2.2015.05.29.15.38.53 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 29 May 2015 15:38:53 -0700 (PDT) From: Khem Raj To: alsa-devel@alsa-project.org Date: Fri, 29 May 2015 15:38:49 -0700 Message-Id: <1432939129-8343-1-git-send-email-raj.khem@gmail.com> X-Mailer: git-send-email 2.1.4 Cc: Khem Raj Subject: [alsa-devel] [PATCH - alsa-plugins/arcam-av ] arcam-av: Include sys/select.h for fd_set definition X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP fixes build errors on non-glibc based systems arcam-av/arcam_av.c:389:2: error: unknown type name 'fd_set' Signed-off-by: Khem Raj --- arcam-av/arcam_av.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arcam-av/arcam_av.c b/arcam-av/arcam_av.c index 0491fc6..fff96f9 100644 --- a/arcam-av/arcam_av.c +++ b/arcam-av/arcam_av.c @@ -31,6 +31,7 @@ #include #include +#include #include #include #include