From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 1B7F744AB0 for ; Wed, 2 Nov 2022 13:11:14 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id B4AE368BDFC; Wed, 2 Nov 2022 15:11:11 +0200 (EET) Received: from btbn.de (btbn.de [136.243.74.85]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4D3CE68BC5C for ; Wed, 2 Nov 2022 15:11:05 +0200 (EET) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id C433C2F8AF4; Wed, 2 Nov 2022 14:11:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1667394660; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=pH2zBrsQvft1zAJogYD/Z3o+95tEM4T9LGGCfUhc6l0=; b=a0BunO6UL0whWjN21Cj4WqCP8yzqvFUhLjUrmPsoCA1Gv3zW/DFIc90eWLCVdGyF03dbXj HgHgNeI+lAiRISyrijp7buptcP6hUihAunSLhTG40T1xf80jMxUsZo77CHpwABhoVCJ4J5 M7LLI9hMkmCi6sEXPHtv8Ej5/n2Hz27TZtdS2jCgEpoKYpGYDhyEHeOUkBTdv50hgrGn4k 7tQXIrKua8JRmK4zXrXeRECU6K7Ss28yhRR5J9DYhPrzuUYsi05CuFAomxPVcoxC+YvcoK 1EXgIceYG8OkoZ5BJbs9JqdAmyAn4RG1Jrf8nnyPPfqBl09CtYFd4Parf6vATA== From: Timo Rothenpieler To: ffmpeg-devel@ffmpeg.org Date: Wed, 2 Nov 2022 14:10:39 +0100 Message-Id: <20221102131039.3808-1-timo@rothenpieler.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH] configure: add pkg-config check for chromaprint X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 30f0ce4e26..2bcdf18a57 100755 --- a/configure +++ b/configure @@ -6559,7 +6559,8 @@ enabled avisynth && { require_headers "avisynth/avisynth_c.h avisynth/a { test_cpp_condition avisynth/avs/version.h "AVS_MAJOR_VER >= 3 && AVS_MINOR_VER >= 7 && AVS_BUGFIX_VER >= 1 || AVS_MAJOR_VER >= 3 && AVS_MINOR_VER > 7 || AVS_MAJOR_VER > 3" || die "ERROR: AviSynth+ header version must be >= 3.7.1"; } } enabled cuda_nvcc && { check_nvcc cuda_nvcc || die "ERROR: failed checking for nvcc."; } -enabled chromaprint && require chromaprint chromaprint.h chromaprint_get_version -lchromaprint +enabled chromaprint && { check_pkg_config chromaprint libchromaprint "chromaprint.h" chromaprint_get_version || + require chromaprint chromaprint.h chromaprint_get_version -lchromaprint; } enabled decklink && { require_headers DeckLinkAPI.h && { test_cpp_condition DeckLinkAPIVersion.h "BLACKMAGIC_DECKLINK_API_VERSION >= 0x0a0b0000" || die "ERROR: Decklink API version must be >= 10.11"; } } enabled frei0r && require_headers "frei0r.h" -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".