Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Nov 2017 21:22:39 +0000 (UTC)
From:      Adriaan de Groot <adridg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r453379 - head/databases/soci
Message-ID:  <201711022122.vA2LMdFs060129@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adridg
Date: Thu Nov  2 21:22:38 2017
New Revision: 453379
URL: https://svnweb.freebsd.org/changeset/ports/453379

Log:
  {opt}_CMAKE_ARGS_ON isn't a valid syntax. Use {opt}_CMAKE_ON instead.
  This makes the soci port obey the FIREBIRD option (otherwise it always
  looks for Firebird, even when you don't want it to).
  
  Submitted by yuri@ in PR 209530, maintainer timeout (17 months).
  
  PR:		209530
  Submitted by:	yuri@FreeBSD.org
  Reviewed by:	yuri (submitter)
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D12919

Modified:
  head/databases/soci/Makefile

Modified: head/databases/soci/Makefile
==============================================================================
--- head/databases/soci/Makefile	Thu Nov  2 21:12:58 2017	(r453378)
+++ head/databases/soci/Makefile	Thu Nov  2 21:22:38 2017	(r453379)
@@ -57,7 +57,7 @@ BOOST_CMAKE_ON=	-DWITH_BOOST:BOOL=ON
 BOOST_CMAKE_OFF=	-DWITH_BOOST:BOOL=OFF
 
 FIREBIRD_USES=	firebird
-FIREBIRD_CMAKE_ARGS_ON=	-DWITH_FIREBIRD:BOOL=ON
-FIREBIRD_CMAKE_ARGS_OFF=	-DWITH_FIREBIRD:BOOL=OFF
+FIREBIRD_CMAKE_ON=	-DWITH_FIREBIRD:BOOL=ON
+FIREBIRD_CMAKE_OFF=	-DWITH_FIREBIRD:BOOL=OFF
 
 .include <bsd.port.mk>



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