user.hpp //boost/config/user.hpp---------------------------------------------------// //(C)CopyrightJohnMaddock2001. //Use,modificationanddistributionaresubjecttothe //BoostSoftwareLicense,Version1.0.(Seeaccompanyingfile //LICENSE_1_0.txtorcopyathttp://www.boost.org/LICENSE_1_0.txt) //Donotcheckinmodifiedversionsofthisfile, //Thisfilemaybecustomizedbytheenduser,butnotbyboost. // //Usethisfiletodefineasiteandcompilerspecific //configurationpolicy: // //definethistolocateacompilerconfigfile: //#defineBOOST_COMPILER_CONFIG<myheader> //definethistolocateastdlibconfigfile: //#defineBOOST_STDLIB_CONFIG<myheader> //definethistolocateaplatformconfigfile: //#defineBOOST_PLATFORM_CONFIG<myheader> //definethistodisablecompilerconfig, //useifyourcompilerconfighasnothingtoset: //#defineBOOST_NO_COMPILER_CONFIG //definethistodisablestdlibconfig, //useifyourstdlibconfighasnothingtoset: //#defineBOOST_NO_STDLIB_CONFIG //definethistodisableplatformconfig, //useifyourplatformconfighasnothingtoset: //#defineBOOST_NO_PLATFORM_CONFIG //definethistodisableallconfigoptions, //excludingtheuserconfig.Useifyour //setupisfullyISOcompliant,andhasno //usefulextensions,orforautoconfgenerated //setups: //#defineBOOST_NO_CONFIG //definethistomaketheconfig"optimistic" //aboutunknowncompilerversions.Normally //unknowncompilerversionsareassumedtohave //allthedefectsofthelastknownversion,however //settingthisflag,causestheconfigtoassume //thatunknowncompilerversionsarefullyconformant //withthestandard: //#defineBOOST_STRICT_CONFIG //definethistocausetheconfigtohaltcompilation //withan#errorifitencountersanythingunknown-- //eitheranunknowncompilerversionoranunknown //compiler/platform/library: //#defineBOOST_ASSERT_CONFIG //defineifyouwanttodisablethreadingsupport,even //whenavailable: //#defineBOOST_DISABLE_THREADS //definewhenyouwanttodisableWin32specificfeatures //evenwhenavailable: //#defineBOOST_DISABLE_WIN32 //BOOST_DISABLE_ABI_HEADERS:Stopsboostheadersfromincludingany //prefix/suffixheadersthatnormallycontrolthingslikestruct //packingandalignment. //#defineBOOST_DISABLE_ABI_HEADERS //BOOST_ABI_PREFIX:Aprefixheadertoincludeinplaceofwhatever //boost.configwouldnormallyselect,anyreplacementshouldsetup //structpackingandalignmentoptionsasrequired. //#defineBOOST_ABI_PREFIXmy-header-name //BOOST_ABI_SUFFIX:Asuffixheadertoincludeinplaceofwhatever //boost.configwouldnormallyselect,anyreplacementshouldundo //theeffectsoftheprefixheader. //#defineBOOST_ABI_SUFFIXmy-header-name //BOOST_ALL_DYN_LINK:Forcesalllibrariesthathaveseparatesource, //tobelinkedasdll'sratherthanstaticlibrariesonMicrosoftWindows //(thismacroisusedtoturnon__declspec(dllimport)modifiers,sothat //thecompilerknowswhichsymbolstolookforinadllratherthanina //staticlibrary).Notethattheremaybesomelibrariesthatcanonly //bestaticallylinked(Boost.Testforexample)andotherswhichmayonly //bedynamicallylinked(Boost.Threadsforexample),inthesecasesthis //macrohasnoeffect. //#defineBOOST_ALL_DYN_LINK //BOOST_WHATEVER_DYN_LINK:Forceslibrary"whatever"tobelinkedasadll //ratherthanastaticlibraryonMicrosoftWindows:replacetheWHATEVER //partofthemacronamewiththenameofthelibrarythatyouwantto //dynamicallylinkto,forexampleuseBOOST_DATE_TIME_DYN_LINKor //BOOST_REGEX_DYN_LINKetc(thismacroisusedtoturnon__declspec(dllimport) //modifiers,sothatthecompilerknowswhichsymbolstolookforinadll //ratherthaninastaticlibrary). //Notethattheremaybesomelibrariesthatcanonlybestaticallylinked //(Boost.Testforexample)andotherswhichmayonlybedynamicallylinked //(Boost.Threadsforexample),inthesecasesthismacroisunsupported. //#defineBOOST_WHATEVER_DYN_LINK //BOOST_ALL_NO_LIB:Tellstheconfigsystemnottoautomaticallyselect //whichlibrariestolinkagainst. //Normallyifacompilersupports#pragmalib,thenthecorrectlibrary //buildvariantwillbeautomaticallyselectedandlinkedagainst, //simplybytheactofincludingoneofthatlibrary'sheaders. //Thismacroturnsthatfeatureoff. //#defineBOOST_ALL_NO_LIB //BOOST_WHATEVER_NO_LIB:Tellstheconfigsystemnottoautomatically //selectwhichlibrarytolinkagainstforlibrary"whatever", //replaceWHATEVERinthemacronamewiththenameofthelibrary; //forexampleBOOST_DATE_TIME_NO_LIBorBOOST_REGEX_NO_LIB. //Normallyifacompilersupports#pragmalib,thenthecorrectlibrary //buildvariantwillbeautomaticallyselectedandlinkedagainst,simply //bytheactofincludingoneofthatlibrary'sheaders.Thismacroturns //thatfeatureoff. //#defineBOOST_WHATEVER_NO_LIB