git: b833ffcc8afa - main - x11/babl: fix build with SIMD=OFF (+)

From: Dima Panov <fluffy_at_FreeBSD.org>
Date: Fri, 19 Nov 2021 21:52:26 UTC
The branch main has been updated by fluffy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b833ffcc8afae1cefaa908144d87e83b44c3511e

commit b833ffcc8afae1cefaa908144d87e83b44c3511e
Author:     Dima Panov <fluffy@FreeBSD.org>
AuthorDate: 2021-11-19 21:49:26 +0000
Commit:     Dima Panov <fluffy@FreeBSD.org>
CommitDate: 2021-11-19 21:49:26 +0000

    x11/babl: fix build with SIMD=OFF (+)
    
    Babl 0.1.88 have dropped "enable-sse3" from meson options, sync it with port
    
    With hat:       desktop
    Sponsored by:   Netzkommune GmbH
---
 x11/babl/Makefile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/x11/babl/Makefile b/x11/babl/Makefile
index 8a5cb1a03656..d5d304437095 100644
--- a/x11/babl/Makefile
+++ b/x11/babl/Makefile
@@ -23,8 +23,7 @@ OPTIONS_DEFINE=	SIMD
 OPTIONS_DEFAULT=SIMD
 
 SIMD_MESON_OFF=	-Denable-mmx=false -Denable-sse=false \
-		-Denable-sse2=false -Denable-sse3=false \
-		-Denable-sse4_1=false -Denable-avx2=false \
-		-Denable-f16c=false
+		-Denable-sse2=false -Denable-sse4_1=false \
+		-Denable-avx2=false -Denable-f16c=false
 
 .include <bsd.port.mk>