svn commit: r423099 - head/databases/mariadb101-server

John Marino marino at FreeBSD.org
Sun Oct 2 01:50:01 UTC 2016


Author: marino
Date: Sun Oct  2 01:50:00 2016
New Revision: 423099
URL: https://svnweb.freebsd.org/changeset/ports/423099

Log:
  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.

Modified:
  head/databases/mariadb101-server/Makefile

Modified: head/databases/mariadb101-server/Makefile
==============================================================================
--- head/databases/mariadb101-server/Makefile	Sun Oct  2 01:07:32 2016	(r423098)
+++ head/databases/mariadb101-server/Makefile	Sun Oct  2 01:50:00 2016	(r423099)
@@ -154,13 +154,15 @@ IGNORE=		BASE_GSSAPI is not compatible w
 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:


More information about the svn-ports-all mailing list