From eff434d309085a3e17a1ebbe10566bc14aaae16b Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Mon, 3 Aug 2009 10:12:30 +0000 Subject: [PATCH] Fix bug #46020: With Sun Java System Web Server 7.0 on HPUX, #define HPUX --- sapi/nsapi/nsapi.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c index 3d0a2f250e..321498ccb6 100644 --- a/sapi/nsapi/nsapi.c +++ b/sapi/nsapi/nsapi.c @@ -56,6 +56,13 @@ #endif #endif +/* + * The manual define of HPUX is to fix bug #46020, nsapi.h needs this to detect HPUX + */ +#ifdef __hpux +#define HPUX +#endif + /* * NSAPI includes */ -- 2.50.1