-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
From 97e8c246e4449a4a1725baeffb355faf043a27ab Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Milo=C5=A1=20Komar=C4=8Devi=C4=87?= | ||
<[email protected]> | ||
Date: Wed, 10 Jul 2024 14:07:24 +0200 | ||
Subject: [PATCH] Fix libbrotlidec pkg-config requires | ||
|
||
--- | ||
CMakeLists.txt | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 12c4039..92e9551 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -407,7 +407,7 @@ if (WITH_HEADER_COMPRESSION OR WITH_UNCOMPRESSED_CODEC) | ||
find_package(Brotli) | ||
if (Brotli_FOUND) | ||
message("Brotli found") | ||
- list(APPEND REQUIRES_PRIVATE "libbrotli") | ||
+ list(APPEND REQUIRES_PRIVATE "libbrotlidec") | ||
else() | ||
message("Brotli not found") | ||
endif() | ||
-- | ||
2.39.2 | ||
|