openbsd-ports/lang/gcc/4.0/patches/patch-gcc_ada_adaint_c
espie 5fcba21418 yet another mkstemp needed.
allow fixinc tests to not run.
fix acats to not use type, since which works...
2005-01-07 11:33:14 +00:00

22 lines
775 B
Plaintext

$OpenBSD: patch-gcc_ada_adaint_c,v 1.2 2005/01/07 11:33:14 espie Exp $
--- gcc/ada/adaint.c.orig Fri Jan 7 04:27:01 2005
+++ gcc/ada/adaint.c Fri Jan 7 12:19:37 2005
@@ -685,7 +685,7 @@ __gnat_open_new_temp (char *path, int fm
strcpy (path, "GNAT-XXXXXX");
-#if (defined (__FreeBSD__) || defined (linux)) && !defined (__vxworks)
+#if (defined (__FreeBSD__) || defined (__OpenBSD__) || defined (linux)) && !defined (__vxworks)
return mkstemp (path);
#elif defined (__Lynx__)
mktemp (path);
@@ -775,7 +775,7 @@ __gnat_tmp_name (char *tmp_filename)
free (pname);
}
-#elif defined (linux) || defined (__FreeBSD__)
+#elif defined (linux) || defined (__FreeBSD__) || defined(__OpenBSD__)
#define MAX_SAFE_PATH 1000
char *tmpdir = getenv ("TMPDIR");