git: 21791843fe99 - main - Mk/bsd.gecko.gk: fix sndio logic

From: Christoph Moench-Tegeder <cmt_at_FreeBSD.org>
Date: Tue, 26 Apr 2022 21:22:32 UTC
The branch main has been updated by cmt:

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

commit 21791843fe99d04a53c4631aa3c917b3ede3a86e
Author:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
AuthorDate: 2022-04-26 21:20:50 +0000
Commit:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
CommitDate: 2022-04-26 21:20:50 +0000

    Mk/bsd.gecko.gk: fix sndio logic
    
    my previous attempt at handling both firefox >= 100 and firefox-esr/
    thunderbird at 91.x suffered a thinko.
---
 Mk/bsd.gecko.mk | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk
index cee597e4e465..af3e496a05c5 100644
--- a/Mk/bsd.gecko.mk
+++ b/Mk/bsd.gecko.mk
@@ -270,15 +270,18 @@ MOZ_OPTIONS+=	--disable-pulseaudio
 
 .    if ${PORT_OPTIONS:MSNDIO}
 BUILD_DEPENDS+=	${LOCALBASE}/include/sndio.h:audio/sndio
-MOZ_OPTIONS+=	--enable-sndio
 .      if ${MOZILLA_VER:R:R} < 100
 post-patch-SNDIO-on:
 	@${REINPLACE_CMD} -e 's|OpenBSD|${OPSYS}|g' \
 		-e '/DISABLE_LIBSNDIO_DLOPEN/d' \
 		${MOZSRC}/media/libcubeb/src/moz.build
+.      else
+MOZ_OPTIONS+=	--enable-sndio
 .      endif
 .    else
+.      if ${MOZILLA_VER:R:R} >= 100
 MOZ_OPTIONS+=	--disable-sndio
+.      endif
 .    endif
 
 .    if ${PORT_OPTIONS:MDEBUG}