From patchwork Tue Mar 2 16:03:08 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter White X-Patchwork-Id: 26065 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id CFC1144B430 for ; Tue, 2 Mar 2021 18:03:17 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A56BC68A42C; Tue, 2 Mar 2021 18:03:17 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mout01.posteo.de (mout01.posteo.de [185.67.36.65]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 27EA368812E for ; Tue, 2 Mar 2021 18:03:11 +0200 (EET) Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 49C02160064 for ; Tue, 2 Mar 2021 17:03:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1614700989; bh=7cD3Niz3tFmRE+igYeBrlKsO12TFP6ZOldzq+hPwbmQ=; h=From:Subject:To:Date:From; b=Niqg89pNs6zBKFTPLf1YAyhxneEALUsvGmgPzmkbkzUd79FDHgjE7XQVc+2x3wgZr ONWhOBFfq26zkHWpEN1m0Ovep90MEkQVNLklxZOjYb51ZVb/yADg9E2p5aAi7ANwmE LQ2tJQxi5LHk5tlZ2Eq1vw0JYSyptwuZ6tJBbR0LrykoiOOfJ9tmBqT1OFzWvbnSBn KS/3Q9BT8/ETpJXZukVu7NB5fYF6ob6EnItkwyzP+Vq/s+NKwjbBXJ1yQ/lczVfS02 acoCkVAzYKijs1wYm/7Xnc8hCc093LkF4eX70stj+jHsthp3Ig2evVn475Y/EoYhcA zhSUdVbbjltTQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Dqhk46T67z9rxX for ; Tue, 2 Mar 2021 17:03:08 +0100 (CET) From: Peter White To: ffmpeg-devel@ffmpeg.org Message-ID: Date: Tue, 2 Mar 2021 17:03:08 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 Content-Language: en-US Subject: [FFmpeg-devel] [PATCH] Bugfix for #9135 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 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Hello dear ffmpeg developers, I have just created ticket #9135 on the bug tracker. According to the instructions, I am sending the patch to this list, see attachment. Peter diff --git a/configure b/configure index d11942fced..bcc845668b 100755 --- a/configure +++ b/configure @@ -6490,7 +6490,7 @@ enabled mmal && { check_lib mmal interface/mmal/mmal.h mmal_port_co die "ERROR: mmal not found" && check_func_headers interface/mmal/mmal.h "MMAL_PARAMETER_VIDEO_MAX_NUM_CALLBACKS"; } enabled openal && { { for al_extralibs in "${OPENAL_LIBS}" "-lopenal" "-lOpenAL32"; do - check_lib openal 'AL/al.h' alGetError "${al_extralibs}" && break; done } || + check_lib openal 'AL/al.h' alGetError "${al_extralibs}" && break; done; } || die "ERROR: openal not found"; } && { test_cpp_condition "AL/al.h" "defined(AL_VERSION_1_1)" || die "ERROR: openal must be installed and version must be 1.1 or compatible"; }