pkgsrc-Changes archive

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

CVS commit: pkgsrc/multimedia/x264-devel



Module Name:    pkgsrc
Committed By:   schmonz
Date:           Mon Dec 27 20:24:03 UTC 2021

Modified Files:
        pkgsrc/multimedia/x264-devel: Makefile

Log Message:
Don't --disable-asm on Darwin-*-aarch64. At least on Monterey 12.1,
--disable-asm makes the build fail with undefined symbols largely
matching "*_asm" or "*_aarch64". Simply removing it from CONFIGURE_ARGS
lets the build succeed.

(If --disable-asm turns out to be needed for older macOS/aarch64, we can
bring it back conditionalized on OS_VERSION.)


To generate a diff of this commit:
cvs rdiff -u -r1.80 -r1.81 pkgsrc/multimedia/x264-devel/Makefile

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

Modified files:

Index: pkgsrc/multimedia/x264-devel/Makefile
diff -u pkgsrc/multimedia/x264-devel/Makefile:1.80 pkgsrc/multimedia/x264-devel/Makefile:1.81
--- pkgsrc/multimedia/x264-devel/Makefile:1.80  Wed Nov 24 17:31:01 2021
+++ pkgsrc/multimedia/x264-devel/Makefile       Mon Dec 27 20:24:03 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.80 2021/11/24 17:31:01 nia Exp $
+# $NetBSD: Makefile,v 1.81 2021/12/27 20:24:03 schmonz Exp $
 
 DISTNAME=      x264-snapshot-20191217-2245
 PKGNAME=       ${DISTNAME:S/-snapshot-/-devel-/:S/-2245$//}
@@ -19,7 +19,6 @@ LICENSE=      gnu-gpl-v2
 # NetBSD/mips needs ASM disabled because it uses the MSA extension
 # (requires MIPS64 revision 2) and fails to build.
 .if ${OPSYS} == "SunOS" || \
-    !empty(MACHINE_PLATFORM:MDarwin-*-aarch64) || \
     !empty(MACHINE_PLATFORM:MNetBSD-*-i386) || \
     !empty(MACHINE_PLATFORM:MNetBSD-*-mips*)
 CONFIGURE_ARGS+=       --disable-asm



Home | Main Index | Thread Index | Old Index