From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4d95g4116Zz30Qc for ; Mon, 17 Nov 2025 11:51:12 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4d95g05h71z2xM3 for ; Mon, 17 Nov 2025 11:51:08 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4d95fz6M6LzYc; Mon, 17 Nov 2025 11:51:07 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1763380268; 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=oU4sXy0lqddi2YzIjoW9A/yd9D7uRcLT/jNzfSzwiKw=; b=vaoR41EguI8vSdyQIHhuKGFDdUiXhHKNN7j6Itf6EYw6vcWKj/NSIpX21AH3NO2DTk8fOL DrKsEiipdM3GIQDg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1763380268; 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=oU4sXy0lqddi2YzIjoW9A/yd9D7uRcLT/jNzfSzwiKw=; b=QuXou4PJRrYEGIiYpAEqlSlXdCmhBZePZAMv+R2umgUXLX5zC7AUjT3lsxEJou7VUt7OD3 6/Y2GBANmfAtz62OEwbOv8+Acv6jnuJ1dGK7x66G+ryXNS/NsiMMJWkdJZahq867Ij0piA aH5bSHqdmtd4mbdxo+P62zKsWrggl99C5/zbqWaEdXXZG3O6H6vCYKdRPmWtRQ2aUZ/ExC Qc1Z5lhf0SLfFrcCgMmkBczug6ZYCLyMjS8d3pJEFWViOfvEKlXhUy2XvsP8UanR1yQr8W A6YnBiLvV5uvsD9XT6ys4MKZT2h4d8EdQtVNAYXwP3E9N4ccfMtT4yz1MAQ3pg== From: Stefan Schantl To: development@lists.ipfire.org Cc: Stefan Schantl Subject: [PATCH] ffmpeg: Re-enable lame and SSL support Date: Mon, 17 Nov 2025 12:49:55 +0100 Message-ID: <20251117114955.20424-1-stefan.schantl@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The ffmpeg developers decided at some point in the past to change some defaults during configure and therefore we need to explit enable support for lame and openssl. Signed-off-by: Stefan Schantl --- lfs/ffmpeg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lfs/ffmpeg b/lfs/ffmpeg index 28a697eee..5e69ce718 100644 --- a/lfs/ffmpeg +++ b/lfs/ffmpeg @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = ffmpeg -PAK_VER = 21 +PAK_VER = 22 DEPS = sdl2 lame libvorbis @@ -95,6 +95,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) --enable-gpl \ --enable-version3 \ --enable-avfilter \ + --enable-libmp3lame \ + --enable-openssl \ --disable-doc cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install -- 2.47.3