/home/ntakagi/work/STLport-5.1.5/stlport/stl/_check_config.h

Go to the documentation of this file.
00001 // This file is reserved to site configuration purpose
00002 // and should NEVER be overridden by user
00003 
00004 /*
00005  *  Consistency check : if we use SGI iostreams, we have to use consistent
00006  *  thread model (single-threaded or multi-threaded) with the compiled library
00007  *
00008  *  Default is multithreaded build. If you want to build and use single-threaded
00009  *  STLport, please change _STLP_NOTHREADS configuration setting above and rebuild the library
00010  *
00011  */
00012 
00013 # if !defined(_STLP_USE_NO_IOSTREAMS) && !defined(_STLP_NO_THREADS) && !defined(_REENTRANT)
00014 
00015 #  if defined(_MSC_VER) && !defined(__MWERKS__) && !defined (__COMO__) && !defined(_MT)
00016 #   error "Only multi-threaded runtime library may be linked with STLport!"
00017 #  endif
00018 
00019 // boris : you may change that to build non-threadsafe STLport library
00020 #  if defined (__BUILDING_STLPORT) /* || defined (_STLP_DEBUG) */
00021 #   define _REENTRANT 1
00022 #  endif
00023 
00024 # endif



Generated on Mon Mar 10 15:32:20 2008 by  doxygen 1.5.1