diff options
author | Phil Sutter <phil@nwl.cc> | 2025-01-05 01:18:20 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2025-01-06 11:53:41 +0100 |
commit | a923d6c6e43d8984c95cfea79c5ed5584994fae2 (patch) | |
tree | 6cadb8078a8e05bd80cb2b865c6e46d19c6414d8 | |
parent | edb8317be0fd56b8894d03bf6a7df4be8be694b6 (diff) |
package: ffmpeg: Do not mandatory depend on libressl
There is a package choice for libffmpeg to select the SSL backend
library. It was buggy though, the build dependency was not recognized.
Looks like the choice has to use PKG_LIBNAME to be recognized by
depmaker.
Fixes: b076cd3c45c85 ("ffmpeg: add choice for ssl")
Signed-off-by: Phil Sutter <phil@nwl.cc>
-rw-r--r-- | package/ffmpeg/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/ffmpeg/Makefile b/package/ffmpeg/Makefile index 8c00cdef4..2920791d7 100644 --- a/package/ffmpeg/Makefile +++ b/package/ffmpeg/Makefile @@ -5,19 +5,19 @@ include $(ADK_TOPDIR)/rules.mk PKG_NAME:= ffmpeg PKG_VERSION:= 6.1.1 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_HASH:= 5e3133939a61ef64ac9b47ffd29a5ea6e337a4023ef0ad972094b4da844e3a20 PKG_DESCR:= record, convert and stream audio & video PKG_SECTION:= libs/video PKG_NEEDS:= threads -PKG_DEPENDS:= libncurses libressl -PKG_BUILDDEP:= ncurses libressl +PKG_DEPENDS:= libncurses +PKG_BUILDDEP:= ncurses PKG_URL:= http://www.ffmpeg.org/ PKG_SITES:= http://www.ffmpeg.org/releases/ PKG_LIBNAME:= libffmpeg PKG_OPTS:= dev -PKG_CHOICES_FFMPEG:= WITH_LIBRESSL WITH_OPENSSL +PKG_CHOICES_LIBFFMPEG:= WITH_LIBRESSL WITH_OPENSSL PKGCD_WITH_LIBRESSL:= use libressl for crypto PKGCS_WITH_LIBRESSL:= libressl ca-certificates PKGCB_WITH_LIBRESSL:= libressl |