Deleted Added
full compact
globals.h (146062) globals.h (146134)
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

--- 21 unchanged lines hidden (view full) ---

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
1/*-
2 * Copyright (c) 1988, 1989, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1989 by Berkeley Softworks
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to Berkeley by
8 * Adam de Boor.

--- 21 unchanged lines hidden (view full) ---

30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * $FreeBSD: head/usr.bin/make/globals.h 146062 2005-05-10 14:16:40Z harti $
38 * $FreeBSD: head/usr.bin/make/globals.h 146134 2005-05-12 11:58:39Z harti $
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */

--- 41 unchanged lines hidden (view full) ---

88 * Otherwise it is routed to temporary files from which it is retrieved
89 * when the shell exits */
90extern Boolean usePipes;
91
92/* TRUE if we aren't supposed to really make anything, just see if the
93 * targets are out-of-date */
94extern Boolean queryFlag;
95
39 */
40
41#ifndef globals_h_1c1edb96
42#define globals_h_1c1edb96
43
44/*
45 * Global Variables
46 */

--- 41 unchanged lines hidden (view full) ---

88 * Otherwise it is routed to temporary files from which it is retrieved
89 * when the shell exits */
90extern Boolean usePipes;
91
92/* TRUE if we aren't supposed to really make anything, just see if the
93 * targets are out-of-date */
94extern Boolean queryFlag;
95
96/* TRUE if environment should be searched for all variables before
97 * the global context */
98extern Boolean checkEnvFirst;
99
100/* List of specific variables for which the environment should be
101 * searched before the global context */
102extern Lst envFirstVars;
103
104extern struct GNode *DEFAULT; /* .DEFAULT rule */
105
106/* The time at the start of this whole process */
107extern time_t now;
108
109extern int debug;
110
111/* warning flags */
112extern uint32_t warn_cmd; /* positive warning flags on command line */
113extern uint32_t warn_nocmd; /* negative warning flags on command line */
114extern uint32_t warn_flags; /* current warning flags */
115
116#endif /* globals_h_1c1edb96 */
96/* List of specific variables for which the environment should be
97 * searched before the global context */
98extern Lst envFirstVars;
99
100extern struct GNode *DEFAULT; /* .DEFAULT rule */
101
102/* The time at the start of this whole process */
103extern time_t now;
104
105extern int debug;
106
107/* warning flags */
108extern uint32_t warn_cmd; /* positive warning flags on command line */
109extern uint32_t warn_nocmd; /* negative warning flags on command line */
110extern uint32_t warn_flags; /* current warning flags */
111
112#endif /* globals_h_1c1edb96 */