From owner-svn-src-all@FreeBSD.ORG Tue May 27 18:39:14 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 11F10708; Tue, 27 May 2014 18:39:14 +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 D97EC27DF; Tue, 27 May 2014 18:39:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4RIdDNw055388; Tue, 27 May 2014 18:39:13 GMT (envelope-from sjg@svn.freebsd.org) Received: (from sjg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4RIdDq8055387; Tue, 27 May 2014 18:39:13 GMT (envelope-from sjg@svn.freebsd.org) Message-Id: <201405271839.s4RIdDq8055387@svn.freebsd.org> From: "Simon J. Gerraty" Date: Tue, 27 May 2014 18:39:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266760 - head/contrib/bmake 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.18 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: Tue, 27 May 2014 18:39:14 -0000 Author: sjg Date: Tue May 27 18:39:13 2014 New Revision: 266760 URL: http://svnweb.freebsd.org/changeset/base/266760 Log: Portmgr no longer need the UL hack. Reviewed by: obrien Modified: head/contrib/bmake/var.c Modified: head/contrib/bmake/var.c ============================================================================== --- head/contrib/bmake/var.c Tue May 27 18:27:51 2014 (r266759) +++ head/contrib/bmake/var.c Tue May 27 18:39:13 2014 (r266760) @@ -141,17 +141,6 @@ __RCSID("$NetBSD: var.c,v 1.184 2013/09/ extern int makelevel; /* - * XXX transition hack for FreeBSD ports. - * bsd.port.mk can set .MAKE.FreeBSD_UL=yes - * to cause us to treat :[LU] as aliases for :t[lu] - * To be reverted when ports converts to :t[lu] (when 8.3 is EOL) - */ -#define MAKE_FREEBSD_UL ".MAKE.FreeBSD_UL" -#ifdef MAKE_FREEBSD_UL -static int FreeBSD_UL = FALSE; -#endif - -/* * This lets us tell if we have replaced the original environ * (which we cannot free). */ @@ -990,12 +979,6 @@ Var_Set(const char *name, const char *va Var_Append(MAKEOVERRIDES, name, VAR_GLOBAL); } - -#ifdef MAKE_FREEBSD_UL - if (strcmp(MAKE_FREEBSD_UL, name) == 0) { - FreeBSD_UL = getBoolean(MAKE_FREEBSD_UL, FALSE); - } -#endif out: @@ -2689,24 +2672,8 @@ ApplyModifiers(char *nstr, const char *t free(loop.str); break; } - case 'U': -#ifdef MAKE_FREEBSD_UL - if (FreeBSD_UL) { - int nc = tstr[1]; - - /* we have to be careful, since :U is used internally */ - if (nc == ':' || nc == endc) { - char *dp = bmake_strdup(nstr); - for (newStr = dp; *dp; dp++) - *dp = toupper((unsigned char)*dp); - cp = tstr + 1; - termc = *cp; - break; /* yes inside the conditional */ - } - /* FALLTHROUGH */ - } -#endif case 'D': + case 'U': { Buffer buf; /* Buffer for patterns */ int wantit; /* want data in buffer */ @@ -2766,17 +2733,6 @@ ApplyModifiers(char *nstr, const char *t break; } case 'L': -#ifdef MAKE_FREEBSD_UL - if (FreeBSD_UL) { - char *dp = bmake_strdup(nstr); - for (newStr = dp; *dp; dp++) - *dp = tolower((unsigned char)*dp); - cp = tstr + 1; - termc = *cp; - break; - } - /* FALLTHROUGH */ -#endif { if ((v->flags & VAR_JUNK) != 0) v->flags |= VAR_KEEP;