summaryrefslogtreecommitdiff
path: root/includes.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-08-15 00:01:48 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-08-15 00:01:48 +1000
commit3d50c9bda6b7eb63325e577c243e1a59a130c3ad (patch)
tree4e56e37594da149caa809f0fb786d2c389901258 /includes.h
parent066969339dcd0352965de0ab1b5f693cf2a7fee8 (diff)
- (dtucker) [includes.h] Undef _INCLUDE__STDC__ on HP-UX, otherwise
prot.h and shadow.h provide conflicting declarations of getspnam. ok djm@
Diffstat (limited to 'includes.h')
-rw-r--r--includes.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/includes.h b/includes.h
index 99b70502c..3a6b4c32b 100644
--- a/includes.h
+++ b/includes.h
@@ -181,6 +181,16 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
181# include <kafs.h> 181# include <kafs.h>
182#endif 182#endif
183 183
184/*
185 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
186 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
187 */
188#ifdef __hpux
189# ifdef _INCLUDE__STDC__
190# undef _INCLUDE__STDC__
191# endif
192#endif
193
184#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ 194#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
185 195
186#include "defines.h" 196#include "defines.h"