databases/mariadb101: Fix OPSYS logic

The intent was to check for GSSAPI BASE option set on FreeBSD 9, but
the effect was an IGNORE set for all non-FreeBSD platforms.  Fix the
logic to its original intent under the just-fix-it blanket.
This commit is contained in:
John Marino 2016-10-02 01:50:00 +00:00
parent 16c36744d1
commit 1eadc6fe21
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423099

View file

@ -154,13 +154,15 @@ IGNORE= BASE_GSSAPI is not compatible with OpenSSL from ports. Use other GSSAPI
CMAKE_ARGS+= -DWITHOUT_TOKUDB
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000012
.if ${OPSYS} == FreeBSD
. if ${OSVERSION} >= 1000012
CMAKE_ARGS+= -DWITH_JEMALLOC="system"
.else
. else
CMAKE_ARGS+= -DWITH_JEMALLOC="no"
.if ${PORT_OPTIONS:MGSSAPI_BASE}
. if ${PORT_OPTIONS:MGSSAPI_BASE}
IGNORE= requires a Kerberos implementation from ports on FreeBSD < 10. Select GSSAPI_HEIMDAL or GSSAPI_MIT option
.endif
. endif
. endif
.endif
post-patch: