summaryrefslogtreecommitdiff
path: root/Mk/bsd.sanity.mk
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2016-04-27 20:19:16 +0000
committerSteve Wills <swills@FreeBSD.org>2016-04-27 20:19:16 +0000
commit38fb960f497e9e7b61e609bd31abf3ed1d20c589 (patch)
tree8d7f502253cd1c8daa064e6b0eb7c99cfd618a72 /Mk/bsd.sanity.mk
parentRather than listening on two sockets, one for IPv4 and one for IPv6 the (diff)
Improve gem.mk
* Check for valid args to USES=gem * Make autoplist default, allowing it to be specified (which is a no-op), or turned off * Add sanity checks for USE_RUBYGEMS RUBYGEM_AUTOPLIST Requested by: mat Discussed with: mat
Notes
Notes: svn path=/head/; revision=414131
Diffstat (limited to 'Mk/bsd.sanity.mk')
-rw-r--r--Mk/bsd.sanity.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk
index 7f5258ba8117..dddeea76708d 100644
--- a/Mk/bsd.sanity.mk
+++ b/Mk/bsd.sanity.mk
@@ -161,6 +161,14 @@ DEV_ERROR+= "WANT_SDL is no longer supported. If you need SDL, use USE_SDL, if y
DEV_ERROR+= "USE_RC_SUBR=yes has not been supported for a long time, remove it."
.endif
+.if defined(USE_RUBYGEMS) && !defined(RUBYGEM_AUTOPLIST)
+DEV_ERROR+= "USE_RUBYGEMS is no longer supported, please use USES=gem:noautoplist"
+.endif
+
+.if defined(RUBYGEM_AUTOPLIST)
+DEV_ERROR+= "RUBYGEM_AUTOPLIST is no longer supported, please use USES=gem"
+.endif
+
SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \
USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \
USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \