diff options
author | Roderick Schertler <roderick@argon.org> | 1997-12-20 18:01:40 -0500 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-01-08 15:57:31 +0000 |
commit | 16de4a3eb5e2e5404a0e20c9aab265691171d76f (patch) | |
tree | 3cd06ea15e8ebfbda3e3b2dade6325874f78fc2f /perl.h | |
parent | 313489a27de6697e61bfff01393b351f135aa63b (diff) | |
download | perl-16de4a3eb5e2e5404a0e20c9aab265691171d76f.tar.gz |
DG/UX tweaks to perl.h:
Subject: [PATCH] _56 on dgux without threads
p4raw-id: //depot/perl@407
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -113,7 +113,8 @@ register struct op *op asm(stringify(OP_IN_REGISTER)); # define STANDARD_C 1 #endif -#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) +#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) \ + || defined(__DGUX) # define DONT_DECLARE_STD 1 #endif @@ -1382,7 +1383,9 @@ int runops_debug _((void)); /* VMS doesn't use environ array and NeXT has problems with crt0.o globals */ #if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__)) -#if !defined(DONT_DECLARE_STD) || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || defined(__sgi) +#if !defined(DONT_DECLARE_STD) \ + || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) \ + || defined(__sgi) || defined(__DGUX) extern char ** environ; /* environment variables supplied via exec */ #endif #else |