From patchwork Fri Sep 30 11:33:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Timo Rothenpieler X-Patchwork-Id: 791 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.140.66 with SMTP id o63csp177913vsd; Fri, 30 Sep 2016 04:34:20 -0700 (PDT) X-Received: by 10.194.236.42 with SMTP id ur10mr5747213wjc.211.1475235260670; Fri, 30 Sep 2016 04:34:20 -0700 (PDT) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id kc2si20166244wjc.61.2016.09.30.04.34.19; Fri, 30 Sep 2016 04:34:20 -0700 (PDT) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@rothenpieler.org; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id C8709689FA9; Fri, 30 Sep 2016 14:34:04 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from btbn.de (btbn.de [5.9.118.179]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 08668689D69 for ; Fri, 30 Sep 2016 14:33:59 +0300 (EEST) Received: from localhost.localdomain (fvg.uni-bremen.de [134.102.252.65]) by btbn.de (Postfix) with ESMTPSA id B36F12A31BC; Fri, 30 Sep 2016 13:34:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=rothenpieler.org; s=mail; t=1475235251; bh=k6K0T1zxb+pUMQUgH5QKfpLjDQs7Lw/RnQ9nI2M4FWs=; h=From:To:Cc:Subject:Date; b=Kpi9fkXhj7aLy710A/0yNRVwae9ONJ8KQix7UGMUdsnSr3FnDBVk60WBrkaqiLaBP 6H9HyetSvD8xFSkPpP6uQYsdzJy4syvdEp+8L0XWjXJuTSz6KbFE5k2vk3Hx3F+enV ODhFcREFrXtetcOzVWiykNWQgTqAA4h41Q9jYf/o= From: Timo Rothenpieler To: FFmpeg development discussions and patches Date: Fri, 30 Sep 2016 13:33:52 +0200 Message-Id: <20160930113352.11256-1-timo@rothenpieler.org> X-Mailer: git-send-email 2.8.3 Subject: [FFmpeg-devel] [PATCH] configure: define _GNU_SOURCE on cygwin X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: Timo Rothenpieler MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Some function definitions are missing without it, for example sigaction. Fixes ticket #5868 --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 899057d..0e2f459 100755 --- a/configure +++ b/configure @@ -4805,6 +4805,7 @@ case $target_os in objformat="win32" enable dos_paths enabled shared && ! enabled small && check_cmd $windres --version && enable gnu_windres + add_cppflags -D_GNU_SOURCE ;; *-dos|freedos|opendos) network_extralibs="-lsocket"