diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-08 19:33:42 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-04-08 19:33:42 +0000 |
commit | 016c08f566a636ad69fc2d8ab59fb0ca042538f1 (patch) | |
tree | e934db8b1dda517efe2831611de0d54d14b9cc8a /gnu | |
parent | 9b40fac6f08d37fa7a996fd91e12aab93dee1d74 (diff) |
use MKTEMP_EACH_FILE, whee
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/gcc/config/openbsd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/usr.bin/gcc/config/openbsd.h b/gnu/usr.bin/gcc/config/openbsd.h index 549d56c850e..e7b54b1e899 100644 --- a/gnu/usr.bin/gcc/config/openbsd.h +++ b/gnu/usr.bin/gcc/config/openbsd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: openbsd.h,v 1.3 1996/04/29 07:09:45 niklas Exp $ */ +/* $OpenBSD: openbsd.h,v 1.4 1997/04/08 19:33:41 deraadt Exp $ */ /* OPENBSD_NATIVE is defined when gcc is integrated into the OpenBSD source tree so it can be configured appropriately when using the @@ -26,6 +26,9 @@ #endif +/* We want gcc.c to call mktemp() for each file it generates. We would + prefer mkstemp(), but we will take what we get. */ +#define MKTEMP_EACH_FILE 1 /* Provide a CPP_SPEC appropriate for OpenBSD. Current we just deal with the GCC option `-posix'. */ |