Changeset 8284 for code/branches/kicklib2/src/libraries/core/CorePrereqs.h
- Timestamp:
- Apr 21, 2011, 6:58:23 PM (14 years ago)
- Location:
- code/branches/kicklib2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/kicklib2
- Property svn:mergeinfo changed
-
code/branches/kicklib2/src/libraries/core/CorePrereqs.h
r8283 r8284 54 54 # endif 55 55 # endif 56 #elif defined ( ORXONOX_GCC_VISIBILITY ) 56 # define _CorePrivate 57 #elif defined (ORXONOX_GCC_VISIBILITY) 57 58 # define _CoreExport __attribute__ ((visibility("default"))) 59 # define _CorePrivate __attribute__ ((visibility("hidden"))) 58 60 #else 59 61 # define _CoreExport 62 # define _CorePrivate 60 63 #endif 61 64 … … 259 262 namespace boost 260 263 { 261 #if (BOOST_VERSION < 104400)264 #if BOOST_VERSION < 104400 262 265 namespace filesystem 263 266 { … … 266 269 typedef basic_path<std::string, path_traits> path; 267 270 } 268 #el se271 #elif BOOST_VERSION < 104600 269 272 namespace filesystem2 270 273 { … … 278 281 using filesystem2::path_traits; 279 282 using filesystem2::path; 283 } 284 #else 285 namespace filesystem3 286 { 287 class path; 288 } 289 namespace filesystem 290 { 291 using filesystem3::path; 280 292 } 281 293 #endif
Note: See TracChangeset
for help on using the changeset viewer.