From owner-svn-src-all@FreeBSD.ORG Fri Apr 25 19:25:37 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F0072DA; Fri, 25 Apr 2014 19:25:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8CD6E1C5C; Fri, 25 Apr 2014 19:25:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3PJPb8u098578; Fri, 25 Apr 2014 19:25:37 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3PJPbbG098577; Fri, 25 Apr 2014 19:25:37 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201404251925.s3PJPbbG098577@svn.freebsd.org> From: Warner Losh Date: Fri, 25 Apr 2014 19:25:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r264929 - head/share/mk X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2014 19:25:37 -0000 Author: imp Date: Fri Apr 25 19:25:37 2014 New Revision: 264929 URL: http://svnweb.freebsd.org/changeset/base/264929 Log: Now that all the NO_foo expressed in this loop have been removed from the tree, start warning that NO_foo is deprecated. It was supposed to be gone from the tree as a user-setting a long time ago... Modified: head/share/mk/bsd.opts.mk Modified: head/share/mk/bsd.opts.mk ============================================================================== --- head/share/mk/bsd.opts.mk Fri Apr 25 19:25:26 2014 (r264928) +++ head/share/mk/bsd.opts.mk Fri Apr 25 19:25:37 2014 (r264929) @@ -244,7 +244,7 @@ __DEFAULT_YES_OPTIONS+=GCC GNUCXX GCC_BO # Supported NO_* options (if defined, MK_* will be forced to "no", # regardless of user's setting). # -# These are transitional and will disappaer in the fullness of time. +# These are transitional and will disappaer in the FreeBSD 12. # .for var in \ CTF \ @@ -253,6 +253,7 @@ __DEFAULT_YES_OPTIONS+=GCC GNUCXX GCC_BO MAN \ PROFILE .if defined(NO_${var}) +.warning "NO_${var} is defined, but deprecated. Please use MK_${var}=no instead." MK_${var}:=no .endif .endfor