summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorDima Panov <fluffy@FreeBSD.org>2022-07-15 20:48:05 +0300
committerDima Panov <fluffy@FreeBSD.org>2022-07-15 20:48:05 +0300
commitf07f4b439b66de44e27e6b042ca16656ec480156 (patch)
tree07ad2ec2006a46790a828a787db1b3ceec4d187e /x11
parentgames/wesnoth: update to 1.16.5 maintenance release (+) (diff)
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.
Diffstat (limited to 'x11')
-rw-r--r--x11/babl/Makefile4
1 files changed, 3 insertions, 1 deletions
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 \