pkgsrc-Changes archive

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

CVS commit: pkgsrc/multimedia/x265



Module Name:    pkgsrc
Committed By:   cirnatdan
Date:           Sat Jun 12 08:18:14 UTC 2021

Modified Files:
        pkgsrc/multimedia/x265: Makefile

Log Message:
x265: Disable assembly on FreeBSD

according to patch submitted by Yoshihiro Ota in P$ pkg/56236


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/multimedia/x265/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/x265/Makefile
diff -u pkgsrc/multimedia/x265/Makefile:1.34 pkgsrc/multimedia/x265/Makefile:1.35
--- pkgsrc/multimedia/x265/Makefile:1.34        Sat Apr 10 08:36:03 2021
+++ pkgsrc/multimedia/x265/Makefile     Sat Jun 12 08:18:14 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.34 2021/04/10 08:36:03 adam Exp $
+# $NetBSD: Makefile,v 1.35 2021/06/12 08:18:14 cirnatdan Exp $
 
 DISTNAME=      x265_3.5
 PKGNAME=       ${DISTNAME:S/_/-/}
@@ -24,7 +24,7 @@ CMAKE_ARGS+=  -DX265_LATEST_TAG=${PKGVERS
 
 .include "../../mk/bsd.prefs.mk"
 .if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "i386"
-.  if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "i386"
+.  if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && ${MACHINE_ARCH} == "i386" 
 # Avoid text relocations
 CMAKE_ARGS+=   -DENABLE_ASSEMBLY=OFF
 .  else



Home | Main Index | Thread Index | Old Index