diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/base/systhr.cpp | 5 | ||||
| -rw-r--r-- | lib/ldaputil/init.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/base/systhr.cpp b/lib/base/systhr.cpp index d9b69521..134ae2b4 100644 --- a/lib/base/systhr.cpp +++ b/lib/base/systhr.cpp @@ -66,8 +66,11 @@ typedef struct { #if defined (USE_NSPR) - +#if defined(__hpux) && defined(__ia64) +#define DEFAULT_STACKSIZE (256*1024) +#else #define DEFAULT_STACKSIZE (64*1024) +#endif static unsigned long _systhr_stacksize = DEFAULT_STACKSIZE; diff --git a/lib/ldaputil/init.c b/lib/ldaputil/init.c index 935ec081..371d6972 100644 --- a/lib/ldaputil/init.c +++ b/lib/ldaputil/init.c @@ -56,7 +56,11 @@ #define FILE_PATHSEP '/' #endif #ifdef HPUX +#ifdef __ia64 +#define DLL_SUFFIX ".so" +#else #define DLL_SUFFIX ".sl" +#endif #else #define DLL_SUFFIX ".so" #endif |
