git: f07f4b439b66 - main - x11/babl: adjust SIMD logic (+)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 15 Jul 2022 17:51:21 UTC
The branch main has been updated by fluffy: URL: https://cgit.FreeBSD.org/ports/commit/?id=f07f4b439b66de44e27e6b042ca16656ec480156 commit f07f4b439b66de44e27e6b042ca16656ec480156 Author: Dima Panov <fluffy@FreeBSD.org> AuthorDate: 2022-07-15 17:48:05 +0000 Commit: Dima Panov <fluffy@FreeBSD.org> CommitDate: 2022-07-15 17:48:05 +0000 x11/babl: adjust SIMD logic (+) Enable SIMD option by default only on amd64. Force SIMD off (by exclude) on i386 arch to disable autodetect cpu features even it it build on modern cpus. --- x11/babl/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x11/babl/Makefile b/x11/babl/Makefile index 2a26c16c8b36..75d8b7e746f9 100644 --- a/x11/babl/Makefile +++ b/x11/babl/Makefile @@ -2,6 +2,7 @@ PORTNAME= babl PORTVERSION= 0.1.92 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= GIMP @@ -20,7 +21,8 @@ USE_LDCONFIG= yes USE_GNOME= introspection:build OPTIONS_DEFINE= SIMD -OPTIONS_DEFAULT=SIMD +OPTIONS_DEFAULT_amd64=SIMD +OPTIONS_EXCLUDE_i386=SIMD SIMD_MESON_OFF= -Denable-mmx=false -Denable-sse=false \ -Denable-sse2=false -Denable-sse4_1=false \