diff options
| author | Nathan Kinder <nkinder@redhat.com> | 2005-04-18 20:45:01 +0000 |
|---|---|---|
| committer | Nathan Kinder <nkinder@redhat.com> | 2005-04-18 20:45:01 +0000 |
| commit | e92ef06ca32689a87e4c0c9eb15b1df0f442d98e (patch) | |
| tree | c9cdea077e7bd147732b01242ca99a60c06dd00d /lib | |
| parent | 365804864dd9f87d93dfc7d6c557f5bd1ad2397e (diff) | |
| download | ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.gz ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.tar.xz ds-e92ef06ca32689a87e4c0c9eb15b1df0f442d98e.zip | |
HP-UX IPF Porting changes
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 |
