svn commit: r453379 - head/databases/soci

Adriaan de Groot adridg at FreeBSD.org
Thu Nov 2 21:22:40 UTC 2017


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 at 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>


More information about the svn-ports-all mailing list