pkgsrc-Changes archive

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

CVS commit: pkgsrc/x11/pixman



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed Oct 26 08:12:20 UTC 2022

Modified Files:
        pkgsrc/x11/pixman: Makefile

Log Message:
pixman: Disable NEON assembly on Darwin/arm64.


To generate a diff of this commit:
cvs rdiff -u -r1.85 -r1.86 pkgsrc/x11/pixman/Makefile

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

Modified files:

Index: pkgsrc/x11/pixman/Makefile
diff -u pkgsrc/x11/pixman/Makefile:1.85 pkgsrc/x11/pixman/Makefile:1.86
--- pkgsrc/x11/pixman/Makefile:1.85     Sat Oct 22 12:22:01 2022
+++ pkgsrc/x11/pixman/Makefile  Wed Oct 26 08:12:20 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.85 2022/10/22 12:22:01 he Exp $
+# $NetBSD: Makefile,v 1.86 2022/10/26 08:12:20 jperkin Exp $
 
 DISTNAME=      pixman-0.42.0
 PKGREVISION=   3
@@ -13,13 +13,19 @@ LICENSE=    mit
 
 CHECK_PORTABILITY_SKIP+=       Makefile.am # already patched in Makefile.in
 
-GNU_CONFIGURE=         yes
+GNU_CONFIGURE= yes
+USE_LIBTOOL=   yes
+USE_TOOLS+=    perl
+
+.include "../../mk/bsd.prefs.mk"
+
 .if ${MACHINE_ARCH} == i386
 CONFIGURE_ARGS+=       --disable-sse2
 .endif
 
-USE_LIBTOOL=   yes
-USE_TOOLS+=    perl
+.if ${MACHINE_PLATFORM:MDarwin-*-aarch64}
+CONFIGURE_ARGS+=       --disable-arm-a64-neon
+.endif
 
 PKGCONFIG_OVERRIDE+=   pixman-1.pc.in
 PKGCONFIG_OVERRIDE+=   pixman-1-uninstalled.pc.in



Home | Main Index | Thread Index | Old Index