ossrv_pub/configuration/inc/stdapis/stlport/config/stl_gccxml.h
changeset 31 ce057bb09d0b
child 34 5fae379060a7
equal deleted inserted replaced
30:e20de85af2ee 31:ce057bb09d0b
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17   
       
    18 // =============================================================================
       
    19 //	stl_rvct.h
       
    20 //	This is a list of settings for STLport specific to the ARM RVCT compiler.
       
    21 //	Do not include this file directly.
       
    22 // =============================================================================
       
    23 
       
    24 # ifndef _STLP_GCCXML_H
       
    25 #  define  _STLP_GCCXML_H
       
    26 
       
    27 
       
    28 /*
       
    29 // Uncomment if member template classes are not available
       
    30 #if defined(__WINS__)
       
    31 #  define _STLP_NO_MEMBER_TEMPLATE_CLASSES   1
       
    32 #endif
       
    33 
       
    34 // Uncomment if partial specialization is not available
       
    35 #if defined(__WINS__)
       
    36 #  define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
       
    37 #endif
       
    38 */
       
    39 
       
    40 //#warning ********** COMPILER SETTINGS **********
       
    41 // -----------------------------------------------------------------------------
       
    42 //  wstring support
       
    43 //  This is a bit confusing.
       
    44 //  * _STLP_NO_WCHAR_T inhibits the standard C wchar functions (Symbian doesn't 
       
    45 //    have them).
       
    46 //  * _STLP_HAS_WCHAR_T triggers the typedef of wstring.  It's based on wint_t,
       
    47 //    which isn't typedef's elsewhere, so we take care of it here.
       
    48 // -----------------------------------------------------------------------------
       
    49 
       
    50 #define _STLP_HAS_WCHAR_T 1
       
    51 #  include <wchar.h>
       
    52 
       
    53 #ifdef _WCHAR_T
       
    54 #warning ********** _WCHAR_T is defined **********
       
    55 #endif
       
    56 
       
    57 
       
    58 #define _STLP_LIBSTD_CPP_NO_STATIC_VAR_
       
    59 #define _STLP_INIT_AMBIGUITY
       
    60 
       
    61 #endif // _STLP_RVCT_H