linux.hpp stdlib.h gecode/third-party/boost/config/posix_features.hpp BOOST_PLATFORM "linux" BOOST_NO_SWPRINTF BOOST_HAS_UNISTD_H BOOST_HAS_PTHREAD_YIELD __extension__ __const__ const __volatile__ volatile __signed__ signed __typeof__ typeof __inline__ inline //(C)CopyrightJohnMaddock2001-2003. //(C)CopyrightJensMaurer2001-2003. //Use,modificationanddistributionaresubjecttothe //BoostSoftwareLicense,Version1.0.(Seeaccompanyingfile //LICENSE_1_0.txtorcopyathttp://www.boost.org/LICENSE_1_0.txt) //Seehttp://www.boost.orgformostrecentversion. //linuxspecificconfigoptions: #defineBOOST_PLATFORM"linux" //makesurewehave__GLIBC_PREREQifavailableatall #ifdef__cplusplus #include<cstdlib> #else #include<stdlib.h> #endif // //<stdint.h>addedtoglibc2.1.1 //Wecanonlytestfor2.1though: // #ifdefined(__GLIBC__)&&((__GLIBC__>2)||((__GLIBC__==2)&&(__GLIBC_MINOR__>=1))) //<stdint.h>definesint64_tunconditionally,but<sys/types.h>defines //int64_tonlyif__GNUC__.Thus,assumeafullyusable<stdint.h> //onlywhenusingGCC. #ifdefined__GNUC__ #defineBOOST_HAS_STDINT_H #endif #endif #ifdefined(__LIBCOMO__) // //comoonlinuxdoesn'thavestd::cfunctions: //NOTE:versionsoflibcomopriortobeta28haveoctalversionnumbering, //e.g.version25is21(dec) // #if__LIBCOMO_VERSION__<=20 #defineBOOST_NO_STDC_NAMESPACE #endif #if__LIBCOMO_VERSION__<=21 #defineBOOST_NO_SWPRINTF #endif #endif // //Ifglibcispastversion2thenwedefinitelyhave //gettimeofday,earlierversionsmayormaynothaveit: // #ifdefined(__GLIBC__)&&(__GLIBC__>=2) #defineBOOST_HAS_GETTIMEOFDAY #endif #ifdef__USE_POSIX199309 #defineBOOST_HAS_NANOSLEEP #endif #ifdefined(__GLIBC__)&&defined(__GLIBC_PREREQ) //__GLIBC_PREREQisavailablesince2.1.2 //swprintfisavailablesinceglibc2.2.0 #if!__GLIBC_PREREQ(2,2)||(!defined(__USE_ISOC99)&&!defined(__USE_UNIX98)) #defineBOOST_NO_SWPRINTF #endif #else #defineBOOST_NO_SWPRINTF #endif //boilerplatecode: #defineBOOST_HAS_UNISTD_H #include<gecode/third-party/boost/config/posix_features.hpp> #defineBOOST_HAS_PTHREAD_YIELD #ifndef__GNUC__ // //ifthecompilerisnotgccwestillneedtobeabletoparse //theGNUsystemheaders,someofwhich(mainly<stdint.h>) //useGNUspecificextensions: // #ifndef__extension__ #define__extension__ #endif #ifndef__const__ #define__const__const #endif #ifndef__volatile__ #define__volatile__volatile #endif #ifndef__signed__ #define__signed__signed #endif #ifndef__typeof__ #define__typeof__typeof #endif #ifndef__inline__ #define__inline__inline #endif #endif