sl@0: /* stl_icc.h sl@0: * * sl@0: * * A list of Intel compiler for Linux portion of STLport settings. sl@0: * * This file is being included by stlcomp.h sl@0: * */ sl@0: # ifndef _STLP_ICC_H sl@0: # define _STLP_ICC_H sl@0: sl@0: # define _STLP_UINT32_T unsigned long sl@0: # define _STLP_LONG_LONG long long sl@0: # define _STLP_TYPENAME_ON_RETURN_TYPE typename sl@0: sl@0: // Edit relative path below (or put full path) to get native sl@0: // compiler headers included. Default is "../include". sl@0: // C headers may reside in different directory, so separate macro is provided. sl@0: # if (__INTEL_COMPILER < 800) sl@0: # define _STLP_NATIVE_INCLUDE_PATH ../include sl@0: # else sl@0: // The header of files have moved to a new location on Linux Intel C++ compiler sl@0: // starting with version 8, which has GCC 3.2 compatability. sl@0: # define _STLP_NATIVE_INCLUDE_PATH ../include/c++ sl@0: # define _STLP_NATIVE_OLD_STREAMS_INCLUDE_PATH _STLP_NATIVE_INCLUDE_PATH/backward sl@0: # ifndef __GNUC__ sl@0: // If GCC compatability is diabled (-no-gcc is specified) STD needs to be redefined. sl@0: # define _STLP_REDEFINE_STD 1 sl@0: # endif sl@0: # endif sl@0: # define _STLP_NATIVE_C_INCLUDE_PATH ../include sl@0: # define _STLP_NATIVE_CPP_C_INCLUDE_PATH ../include sl@0: sl@0: // This macro constructs header path from directory and name. sl@0: # define _STLP_MAKE_HEADER(path, header) sl@0: // This macro constructs native include header path from include path and name. sl@0: # define _STLP_NATIVE_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header) sl@0: sl@0: # define _STLP_NATIVE_CPP_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_INCLUDE_PATH,header) sl@0: sl@0: // Same for C headers sl@0: # define _STLP_NATIVE_C_HEADER(header) _STLP_MAKE_HEADER(_STLP_NATIVE_C_INCLUDE_PATH,header) sl@0: sl@0: # undef _STLP_WINCE sl@0: sl@0: # ifndef __GNUC__ sl@0: # define __GNUC__ 1 sl@0: # endif sl@0: sl@0: # define _STLP_NO_NATIVE_WIDE_FUNCTIONS 1 sl@0: # endif sl@0: