Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Jun 2013 01:12:56 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r320041 - in head: mail/dspam www/squid
Message-ID:  <201306060112.r561CuN0021497@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Thu Jun  6 01:12:56 2013
New Revision: 320041
URL: http://svnweb.freebsd.org/changeset/ports/320041

Log:
  Fix options conversion with bmake

Modified:
  head/mail/dspam/Makefile
  head/www/squid/Makefile

Modified: head/mail/dspam/Makefile
==============================================================================
--- head/mail/dspam/Makefile	Thu Jun  6 01:08:39 2013	(r320040)
+++ head/mail/dspam/Makefile	Thu Jun  6 01:12:56 2013	(r320041)
@@ -248,7 +248,7 @@ WANT_MYSQL_VER=	55
 #PKGNAMESUFFIX=	-mysql55
 .endif
 
-.if ${PORT_OPTIONS:MMYSQL51) || ${PORT_OPTIONS:MMYSQL55}
+.if ${PORT_OPTIONS:MMYSQL51} || ${PORT_OPTIONS:MMYSQL55}
 USE_MYSQL=	yes
 CONFIGURE_ARGS+=	--with-mysql-includes=${LOCALBASE}/include/mysql \
 		--with-mysql-libraries=${LOCALBASE}/lib/mysql
@@ -494,7 +494,7 @@ pre-configure:
 	@${ECHO_CMD} "DOMAIN_SCALE and LARGE_SCALE are incopatible"
 	@${FALSE}
 .endif
-.if ${PORT_OPTIONS:MLIGHTHTTPD) && ! ${PORT_OPTIONS:MWEBUI}
+.if ${PORT_OPTIONS:MLIGHTHTTPD} && ! ${PORT_OPTIONS:MWEBUI)
 	@${ECHO_CMD} "There's no reason to depend on LightHTTPD if you're not using WebUI"
 	@${FALSE}
 .endif

Modified: head/www/squid/Makefile
==============================================================================
--- head/www/squid/Makefile	Thu Jun  6 01:08:39 2013	(r320040)
+++ head/www/squid/Makefile	Thu Jun  6 01:12:56 2013	(r320041)
@@ -239,7 +239,7 @@ basic_auth+=	SASL
 libexec+=	sasl_auth
 .endif
 # POLA: allow the old global make.conf(5) (pre src.conf(5)) defines, too:
-.if ${PORT_OPTIONS:MNIS_AUTH) && !defined(NO_NIS) && !defined(WITHOUT_NIS}
+.if ${PORT_OPTIONS:MNIS_AUTH} && !defined(NO_NIS) && !defined(WITHOUT_NIS)
 basic_auth+=	YP
 libexec+=	yp_auth
 .endif



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