From patchwork Sun Sep 8 22:51:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hendrik Leppkes X-Patchwork-Id: 14979 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 70509449CC3 for ; Mon, 9 Sep 2019 01:57:26 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 41138687F32; Mon, 9 Sep 2019 01:57:26 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mail-wm1-f47.google.com (mail-wm1-f47.google.com [209.85.128.47]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6535C680234 for ; Mon, 9 Sep 2019 01:57:20 +0300 (EEST) Received: by mail-wm1-f47.google.com with SMTP id q19so11700891wmc.3 for ; Sun, 08 Sep 2019 15:57:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=nxRue7usDqQgKoqfSfdxAHqZsIWKlE+N7BfTebqbOAQ=; b=JHpHthNemiwZ7GrGbZ+l6wPJj9QYUPxagXztinVzt3r8jaUfV5WDKhMrMJlCpy4ypT T8cs6dtVQIHBkLailI/iIkXl7W+KzBCjiad7g5F7MenWbf3j4Kq5atSo0dsINdo+kvJn mRj3EXN/nmOqc+RNp3mZVFDg/CJR9Fi/mvtMfzF2r3JR2cj8RWNW4yZ1YTQUaEFqNWq5 eMrSlfpBfMQb42r2tr2++leKM15WD5dJahpWPRLv1zekosh3b0La6/W9uLIPD7l0V/5k 6+HaWKGnwgY0sVqV/hhSstDX0dyCqLkwBYanOF2GzEpzl7y9If+VO+VaLEhJH0WzWsEv n5hA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=nxRue7usDqQgKoqfSfdxAHqZsIWKlE+N7BfTebqbOAQ=; b=P2vxrtW4zoxgEqC+AzlcA7EEvWcAUxhn2P1XKGe4tOZEpVGwSL8Pza8mTBQp4LN9tP xBOA9FyIUXExtQLS5Deq+bKxxZJ+yIxZb20dptvqFQg38EN+GCf9W1V9LzQmpxu1+pF3 juhznO8JIQEFU58txgvPYcRvUIAgMqP/F3+D0GcrZdfT0r4Fcvlz4Mec1Vp1Ljc+QuX7 s0zPBtswbUgYbrTuEQgNLFeCNkQGT6iWw7o2vKBrpOK27tmjNcgkKO6liNimRuajQvAk TFNugjcvU2C0hZ1CwruzmAr48YyIOhkmJCYixxKzzXAw551gd3EyONDfNLEVzmzRj8/y rmxg== X-Gm-Message-State: APjAAAXJEgUGA22G04HBrf6jz0myBs7JQ6gFOOQQ4w5XgdpizsTdIvRi fonojJ3BKrD329aqsP3j3e6G8YKK X-Google-Smtp-Source: APXvYqwxEmmGy2D2up2TGQYrOk4YO2acM3khitpO5BEv29wWSlucrTYcrgPkIOPXkqMifnapc854jA== X-Received: by 2002:a7b:c752:: with SMTP id w18mr15645757wmk.129.1567983082538; Sun, 08 Sep 2019 15:51:22 -0700 (PDT) Received: from localhost (p200300CCF3C45700943D6D932765EC98.dip0.t-ipconnect.de. [2003:cc:f3c4:5700:943d:6d93:2765:ec98]) by smtp.gmail.com with ESMTPSA id h125sm16350758wmf.31.2019.09.08.15.51.21 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 08 Sep 2019 15:51:21 -0700 (PDT) From: Hendrik Leppkes To: ffmpeg-devel@ffmpeg.org Date: Mon, 9 Sep 2019 00:51:20 +0200 Message-Id: <20190908225120.1875-1-h.leppkes@gmail.com> X-Mailer: git-send-email 2.23.0.windows.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] configure: check for a sufficiently recent enough AMF version 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" Due to the recent addition of Vulkan support to AMF, we require more recent headers that include the new structures, which have been available since AMF 1.4.9 released in September 2018. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 4141c1e8f4..8413826f9e 100755 --- a/configure +++ b/configure @@ -6617,7 +6617,7 @@ EOF enabled amf && check_cpp_condition amf "AMF/core/Version.h" \ - "(AMF_VERSION_MAJOR << 48 | AMF_VERSION_MINOR << 32 | AMF_VERSION_RELEASE << 16 | AMF_VERSION_BUILD_NUM) >= 0x0001000400040001" + "(AMF_VERSION_MAJOR << 48 | AMF_VERSION_MINOR << 32 | AMF_VERSION_RELEASE << 16 | AMF_VERSION_BUILD_NUM) >= 0x0001000400090000" # Funny iconv installations are not unusual, so check it after all flags have been set if enabled libc_iconv; then