ossrv_pub/configuration/inc/stdapis/stlport/config/stl_select_lib.h
changeset 31 ce057bb09d0b
child 34 5fae379060a7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ossrv_pub/configuration/inc/stdapis/stlport/config/stl_select_lib.h	Fri Jun 04 16:20:51 2010 +0100
@@ -0,0 +1,52 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description: 
+*
+*/
+# if !defined (_STLP_NO_OWN_IOSTREAMS)
+
+#  if ! defined (_STLP_LIB_STATIC_SUFFIX)
+#   define _STLP_LIB_STATIC_SUFFIX ""
+#  endif
+
+// Note : the code below is intended to make use of compiled
+// STLport iostreams easier. If you are with to change names used for
+// STLport libraries , please also change RELEASE_NAME and DEBUG_NAME
+// macros in makefile ../../src/vc6.mak (or whatever .mak you are using to build
+// STLport). If you are using binaries, you may just rename the binaries.
+#    if ! defined (__BUILDING_STLPORT) && ! defined (_STLP_DONT_FORCE_MSVC_LIB_NAME)
+#     if defined (_STLP_USE_DECLSPEC)
+#      ifdef _STLP_DEBUG
+#       pragma comment(lib, _STLP_LIB_BASENAME"_stldebug.lib")
+#      elif (defined (_DEBUG) || defined (__DEBUG)) && defined (_STLP_USE_DEBUG_LIB)
+#       pragma comment(lib, _STLP_LIB_BASENAME"_debug.lib")
+#      else
+#       pragma comment(lib, _STLP_LIB_BASENAME".lib")
+#      endif
+#     else /* _STLP_USE_DECLSPEC */
+// fbp : for static linking, debug setting _MUST_ correspond to what
+// has been compiled into binary lib
+#      ifdef _STLP_DEBUG
+#       if (! defined (_DEBUG))
+#        error "For static link with STLport library, _DEBUG setting MUST be on when _STLP_DEBUG is on. (/MTd forces _DEBUG)"
+#       endif
+#       pragma comment(lib, _STLP_LIB_BASENAME"_stldebug"_STLP_LIB_STATIC_SUFFIX".lib")
+#      elif (defined (_DEBUG) || defined (__DEBUG)) && defined (_STLP_USE_DEBUG_LIB)
+#       pragma comment(lib, _STLP_LIB_BASENAME"_debug"_STLP_LIB_STATIC_SUFFIX".lib")
+#      else
+#       pragma comment(lib, _STLP_LIB_BASENAME""_STLP_LIB_STATIC_SUFFIX".lib")
+#      endif
+#     endif /* _STLP_USE_DECLSPEC */
+#    endif /* __BUILDING_STLPORT */
+#   endif /* _STLP_OWN_IOSTREAMS */