diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-07-30 16:07:39 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-07-30 16:07:39 -0700 |
commit | e5f52f206916b7c5264b9371f9bd0113632a4a16 (patch) | |
tree | 27cec8bb83f115343db2a53c8f27543330cf5b64 /Xtransint.h | |
parent | 6d1ad967b894a37f423fd52247df5fcc3bfab1a8 (diff) |
Fix ifdef checks for SVR4 to do the right thing on Solaris
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'Xtransint.h')
-rw-r--r-- | Xtransint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xtransint.h b/Xtransint.h index 0bd4b46..cd5b64f 100644 --- a/Xtransint.h +++ b/Xtransint.h @@ -94,7 +94,7 @@ from The Open Group. * to avoid a race condition. JKJ (6/5/97) */ -# if defined(_POSIX_SOURCE) || defined(USG) || defined(SVR4) || defined(__SCO__) +# if defined(_POSIX_SOURCE) || defined(USG) || defined(SVR4) || defined(__SVR4) || defined(__SCO__) # ifndef NEED_UTSNAME # define NEED_UTSNAME # endif |