diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-16 12:55:05 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-16 16:31:10 +0100 |
commit | 92f34f605ef19f3cfb9b9f3e42c36f08d133c6d2 (patch) | |
tree | 816c4a2f6fc5e435a0ed11bd93c486466717af26 /sal/inc | |
parent | 9f5042e4a519e8583def244aae669fe6f5c80101 (diff) |
Remove HPUX support
Diffstat (limited to 'sal/inc')
-rw-r--r-- | sal/inc/osl/endian.h | 6 | ||||
-rw-r--r-- | sal/inc/sal/config.h | 9 | ||||
-rw-r--r-- | sal/inc/sal/types.h | 2 |
3 files changed, 2 insertions, 15 deletions
diff --git a/sal/inc/osl/endian.h b/sal/inc/osl/endian.h index aecf7dd84580..628c80e7f1f7 100644 --- a/sal/inc/osl/endian.h +++ b/sal/inc/osl/endian.h @@ -121,10 +121,6 @@ extern "C" { # endif #endif -#ifdef HPUX -# include <machine/param.h> -#endif - #ifdef _WIN16 # define _LITTLE_ENDIAN #endif @@ -158,7 +154,7 @@ extern "C" { */ #if !defined(_WIN32) && !defined(_WIN16) && !defined(OS2) && \ !defined(LINUX) && !defined(NETBSD) && !defined(SCO) && \ - !defined(AIX) && !defined(HPUX) && !defined(OPENBSD) && \ + !defined(AIX) && !defined(OPENBSD) && \ !defined(SOLARIS) && !defined(MACOSX) && !defined(FREEBSD) && \ !defined(DRAGONFLY) # error "Target platform not specified !" diff --git a/sal/inc/sal/config.h b/sal/inc/sal/config.h index d1ef84114f90..ffee8f9a4439 100644 --- a/sal/inc/sal/config.h +++ b/sal/inc/sal/config.h @@ -115,15 +115,6 @@ #define SAL_SYSCONFIGFILE( name ) "." name "rc" #endif -#ifdef HPUX -#define SAL_UNX -#define SAL_DLLEXTENSION ".sl" -#define SAL_DLLPREFIX "lib" -#define SAL_PRGEXTENSION ".bin" -#define SAL_CONFIGFILE( name ) name "rc" -#define SAL_SYSCONFIGFILE( name ) "." name "rc" -#endif - #ifdef sun #undef sun #define sun sun diff --git a/sal/inc/sal/types.h b/sal/inc/sal/types.h index 2f25749f7d4a..fdaaab18ba1e 100644 --- a/sal/inc/sal/types.h +++ b/sal/inc/sal/types.h @@ -105,7 +105,7 @@ typedef unsigned char sal_uInt8; #define SAL_PRIuUINT64 "I64u" #define SAL_PRIxUINT64 "I64x" #define SAL_PRIXUINT64 "I64X" -#elif defined(__SUNPRO_CC) || defined(__SUNPRO_C) || defined (__GNUC__) || defined(__hpux) || defined (sgi) +#elif defined(__SUNPRO_CC) || defined(__SUNPRO_C) || defined (__GNUC__) || defined (sgi) #if SAL_TYPES_SIZEOFLONG == 8 typedef signed long int sal_Int64; typedef unsigned long int sal_uInt64; |