diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-02-16 11:39:33 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-02-18 12:02:41 +0200 |
commit | 73d3a596abd2e77e1db7a88bcec9849107738e74 (patch) | |
tree | 02b2aa6c567fb4628cf8884fdda6cc857e7a9402 /sal | |
parent | 7f1da76d8effbddb4520a276296b9f4024972b58 (diff) |
Kill _WIN16
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/osl/diagnose.h | 9 | ||||
-rw-r--r-- | sal/inc/osl/endian.h | 6 | ||||
-rw-r--r-- | sal/osl/os2/system.h | 2 | ||||
-rw-r--r-- | sal/osl/unx/system.h | 2 |
4 files changed, 3 insertions, 16 deletions
diff --git a/sal/inc/osl/diagnose.h b/sal/inc/osl/diagnose.h index a848e0900e16..76b9e775d2fa 100644 --- a/sal/inc/osl/diagnose.h +++ b/sal/inc/osl/diagnose.h @@ -103,15 +103,6 @@ pfunc_osl_printDetailedDebugMessage SAL_CALL osl_setDetailedDebugMessageFunc( pf #define _OSL_GLOBAL #endif /* __cplusplus */ -#ifdef _WIN16 -#if OSL_DEBUG_LEVEL > 0 -#undef OSL_DEBUG_LEVEL -#define OSL_DEBUG_LEVEL 0 -#endif -#endif - - - #if OSL_DEBUG_LEVEL > 0 #define _OSL_DEBUG_ONLY(f) (f) diff --git a/sal/inc/osl/endian.h b/sal/inc/osl/endian.h index b1711a498788..1c4193f415b8 100644 --- a/sal/inc/osl/endian.h +++ b/sal/inc/osl/endian.h @@ -109,10 +109,6 @@ extern "C" { # endif #endif -#ifdef _WIN16 -# define _LITTLE_ENDIAN -#endif - #ifdef OS2 # include <machine/endian.h> #endif @@ -140,7 +136,7 @@ extern "C" { /** Check supported platform. */ -#if !defined(_WIN32) && !defined(_WIN16) && !defined(OS2) && \ +#if !defined(_WIN32) && !defined(OS2) && \ !defined(LINUX) && !defined(NETBSD) && \ !defined(AIX) && !defined(OPENBSD) && \ !defined(SOLARIS) && !defined(MACOSX) && !defined(FREEBSD) && \ diff --git a/sal/osl/os2/system.h b/sal/osl/os2/system.h index b6a31c3b1e63..82e87937712a 100644 --- a/sal/osl/os2/system.h +++ b/sal/osl/os2/system.h @@ -295,7 +295,7 @@ char *macxp_tempnam( const char *tmpdir, const char *prefix ); # include <netinet/tcp.h> #endif -#if !defined(_WIN32) && !defined(_WIN16) && !defined(OS2) && \ +#if !defined(_WIN32) && !defined(OS2) && \ !defined(LINUX) && !defined(NETBSD) && !defined(FREEBSD) && !defined(SCO) && \ !defined(AIX) && \ !defined(SOLARIS) && !defined(MAC) && \ diff --git a/sal/osl/unx/system.h b/sal/osl/unx/system.h index c00ea21624d1..e0089f9a7843 100644 --- a/sal/osl/unx/system.h +++ b/sal/osl/unx/system.h @@ -332,7 +332,7 @@ int macxp_resolveAlias(char *path, int buflen); #endif #endif -#if !defined(_WIN32) && !defined(_WIN16) && !defined(OS2) && \ +#if !defined(_WIN32) && !defined(OS2) && \ !defined(LINUX) && !defined(NETBSD) && !defined(FREEBSD) && !defined(SCO) && \ !defined(AIX) && \ !defined(SOLARIS) && !defined(MACOSX) && \ |