pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/multimedia/ffmpeg7



Module Name:    pkgsrc
Committed By:   triaxx
Date:           Sat Sep 27 09:00:26 UTC 2025

Modified Files:
        pkgsrc/multimedia/ffmpeg7: Makefile Makefile.common

Log Message:
ffmpeg7: Reserve header space for Darwin

pkgsrc changes:
---------------
  * Reserve header space on macOS for later install_name_tool fixes. At least
    games/corsix-th embeds ffmpeg libraries in its bundle and install_name_tool
    fails otherwise.
  * Bump revision.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/multimedia/ffmpeg7/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/multimedia/ffmpeg7/Makefile.common

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/multimedia/ffmpeg7/Makefile
diff -u pkgsrc/multimedia/ffmpeg7/Makefile:1.19 pkgsrc/multimedia/ffmpeg7/Makefile:1.20
--- pkgsrc/multimedia/ffmpeg7/Makefile:1.19     Mon Sep 22 14:21:20 2025
+++ pkgsrc/multimedia/ffmpeg7/Makefile  Sat Sep 27 09:00:26 2025
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.19 2025/09/22 14:21:20 adam Exp $
+# $NetBSD: Makefile,v 1.20 2025/09/27 09:00:26 triaxx Exp $
 
 PKGNAME=       ${DISTNAME:S/ffmpeg/ffmpeg7/}
+PKGREVISION=   1
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://ffmpeg.org/
 COMMENT=       Decoding, encoding and streaming software (v7.x)

Index: pkgsrc/multimedia/ffmpeg7/Makefile.common
diff -u pkgsrc/multimedia/ffmpeg7/Makefile.common:1.13 pkgsrc/multimedia/ffmpeg7/Makefile.common:1.14
--- pkgsrc/multimedia/ffmpeg7/Makefile.common:1.13      Mon Sep 22 14:21:20 2025
+++ pkgsrc/multimedia/ffmpeg7/Makefile.common   Sat Sep 27 09:00:26 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.13 2025/09/22 14:21:20 adam Exp $
+# $NetBSD: Makefile.common,v 1.14 2025/09/27 09:00:26 triaxx Exp $
 # used by multimedia/ffmpeg7/Makefile
 # used by multimedia/ffplay7/Makefile
 
@@ -42,6 +42,9 @@ LDFLAGS+=             ${COMPILER_RPATH_FLAG}${PREFI
 LDFLAGS.Darwin+=       -Wl,-ld_classic
 .endif
 
+# Reserve header space on macOS for later install_name_tool fixes
+LDFLAGS.Darwin+= -Wl,-headerpad_max_install_names
+
 .if ${USE_CROSS_COMPILE:tl} == yes
 CONFIGURE_ARGS+=       --enable-cross-compile
 CONFIGURE_ARGS+=       --host-cc=${NATIVE_CC:Q}



Home | Main Index | Thread Index | Old Index