Fri Oct 30 16:45:37 2020 UTC ()
make(1): rename VAR_EXPORTED_YES to VAR_EXPORTED_SOME

The "yes" sounded too much like "all".


(rillig)
diff -r1.601 -r1.602 src/usr.bin/make/var.c

cvs diff -r1.601 -r1.602 src/usr.bin/make/var.c (expand / switch to unified diff)

--- src/usr.bin/make/var.c 2020/10/30 16:16:16 1.601
+++ src/usr.bin/make/var.c 2020/10/30 16:45:37 1.602
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: var.c,v 1.601 2020/10/30 16:16:16 rillig Exp $ */ 1/* $NetBSD: var.c,v 1.602 2020/10/30 16:45:37 rillig Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1988, 1989, 1990, 1993 4 * Copyright (c) 1988, 1989, 1990, 1993
5 * The Regents of the University of California. All rights reserved. 5 * The Regents of the University of California. All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to Berkeley by 7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor. 8 * Adam de Boor.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -119,27 +119,27 @@ @@ -119,27 +119,27 @@
119#include <sys/types.h> 119#include <sys/types.h>
120#include <regex.h> 120#include <regex.h>
121#endif 121#endif
122#include <inttypes.h> 122#include <inttypes.h>
123#include <limits.h> 123#include <limits.h>
124#include <time.h> 124#include <time.h>
125 125
126#include "make.h" 126#include "make.h"
127#include "dir.h" 127#include "dir.h"
128#include "job.h" 128#include "job.h"
129#include "metachar.h" 129#include "metachar.h"
130 130
131/* "@(#)var.c 8.3 (Berkeley) 3/19/94" */ 131/* "@(#)var.c 8.3 (Berkeley) 3/19/94" */
132MAKE_RCSID("$NetBSD: var.c,v 1.601 2020/10/30 16:16:16 rillig Exp $"); 132MAKE_RCSID("$NetBSD: var.c,v 1.602 2020/10/30 16:45:37 rillig Exp $");
133 133
134#define VAR_DEBUG1(fmt, arg1) DEBUG1(VAR, fmt, arg1) 134#define VAR_DEBUG1(fmt, arg1) DEBUG1(VAR, fmt, arg1)
135#define VAR_DEBUG2(fmt, arg1, arg2) DEBUG2(VAR, fmt, arg1, arg2) 135#define VAR_DEBUG2(fmt, arg1, arg2) DEBUG2(VAR, fmt, arg1, arg2)
136#define VAR_DEBUG3(fmt, arg1, arg2, arg3) DEBUG3(VAR, fmt, arg1, arg2, arg3) 136#define VAR_DEBUG3(fmt, arg1, arg2, arg3) DEBUG3(VAR, fmt, arg1, arg2, arg3)
137#define VAR_DEBUG4(fmt, arg1, arg2, arg3, arg4) DEBUG4(VAR, fmt, arg1, arg2, arg3, arg4) 137#define VAR_DEBUG4(fmt, arg1, arg2, arg3, arg4) DEBUG4(VAR, fmt, arg1, arg2, arg3, arg4)
138 138
139ENUM_FLAGS_RTTI_3(VarEvalFlags, 139ENUM_FLAGS_RTTI_3(VarEvalFlags,
140 VARE_UNDEFERR, VARE_WANTRES, VARE_ASSIGN); 140 VARE_UNDEFERR, VARE_WANTRES, VARE_ASSIGN);
141 141
142/* 142/*
143 * This lets us tell if we have replaced the original environ 143 * This lets us tell if we have replaced the original environ
144 * (which we cannot free). 144 * (which we cannot free).
145 */ 145 */
@@ -248,27 +248,27 @@ typedef struct Var { @@ -248,27 +248,27 @@ typedef struct Var {
248 * For environment and undefined variables, it is allocated. */ 248 * For environment and undefined variables, it is allocated. */
249 const char *name; 249 const char *name;
250 void *name_freeIt; 250 void *name_freeIt;
251 251
252 Buffer val; /* its value */ 252 Buffer val; /* its value */
253 VarFlags flags; /* miscellaneous status flags */ 253 VarFlags flags; /* miscellaneous status flags */
254} Var; 254} Var;
255 255
256/* 256/*
257 * Exporting vars is expensive so skip it if we can 257 * Exporting vars is expensive so skip it if we can
258 */ 258 */
259typedef enum VarExportedMode { 259typedef enum VarExportedMode {
260 VAR_EXPORTED_NONE, 260 VAR_EXPORTED_NONE,
261 VAR_EXPORTED_YES, 261 VAR_EXPORTED_SOME,
262 VAR_EXPORTED_ALL 262 VAR_EXPORTED_ALL
263} VarExportedMode; 263} VarExportedMode;
264 264
265static VarExportedMode var_exportedVars = VAR_EXPORTED_NONE; 265static VarExportedMode var_exportedVars = VAR_EXPORTED_NONE;
266 266
267typedef enum VarExportFlags { 267typedef enum VarExportFlags {
268 /* 268 /*
269 * We pass this to Var_Export when doing the initial export 269 * We pass this to Var_Export when doing the initial export
270 * or after updating an exported var. 270 * or after updating an exported var.
271 */ 271 */
272 VAR_EXPORT_PARENT = 0x01, 272 VAR_EXPORT_PARENT = 0x01,
273 /* 273 /*
274 * We pass this to Var_Export1 to tell it to leave the value alone. 274 * We pass this to Var_Export1 to tell it to leave the value alone.
@@ -654,28 +654,28 @@ Var_Export(const char *str, Boolean isEx @@ -654,28 +654,28 @@ Var_Export(const char *str, Boolean isEx
654 } else { 654 } else {
655 flags = VAR_EXPORT_PARENT; 655 flags = VAR_EXPORT_PARENT;
656 } 656 }
657 657
658 (void)Var_Subst(str, VAR_GLOBAL, VARE_WANTRES, &val); 658 (void)Var_Subst(str, VAR_GLOBAL, VARE_WANTRES, &val);
659 /* TODO: handle errors */ 659 /* TODO: handle errors */
660 if (val[0] != '\0') { 660 if (val[0] != '\0') {
661 Words words = Str_Words(val, FALSE); 661 Words words = Str_Words(val, FALSE);
662 662
663 size_t i; 663 size_t i;
664 for (i = 0; i < words.len; i++) { 664 for (i = 0; i < words.len; i++) {
665 const char *name = words.words[i]; 665 const char *name = words.words[i];
666 if (Var_Export1(name, flags)) { 666 if (Var_Export1(name, flags)) {
667 if (var_exportedVars != VAR_EXPORTED_ALL) 667 if (var_exportedVars == VAR_EXPORTED_NONE)
668 var_exportedVars = VAR_EXPORTED_YES; 668 var_exportedVars = VAR_EXPORTED_SOME;
669 if (isExport && (flags & VAR_EXPORT_PARENT)) { 669 if (isExport && (flags & VAR_EXPORT_PARENT)) {
670 Var_Append(MAKE_EXPORTED, name, VAR_GLOBAL); 670 Var_Append(MAKE_EXPORTED, name, VAR_GLOBAL);
671 } 671 }
672 } 672 }
673 } 673 }
674 Words_Free(words); 674 Words_Free(words);
675 } 675 }
676 free(val); 676 free(val);
677} 677}
678 678
679 679
680extern char **environ; 680extern char **environ;
681 681