Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Oct 2016 01:50:00 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423099 - head/databases/mariadb101-server
Message-ID:  <201610020150.u921o0OU016889@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610020150.u921o0OU016889>