Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7518


Ignore:
Timestamp:
Oct 9, 2010, 5:28:36 PM (14 years ago)
Author:
rgrieder
Message:

There was a hidden problem with the recent "radical change" after all.
Fixed it.

Location:
code/branches/ois_update/cmake
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ois_update/cmake/CompilerConfigGCC.cmake

    r7458 r7518  
    3636  OUTPUT_VARIABLE GCC_VERSION
    3737)
    38 
    39 # Complain about incompatibilities
    40 COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.4.0" _compare_result)
    41 IF(NOT _compare_result LESS 0)
    42   IF(${Boost_VERSION} LESS 103700)
    43     MESSAGE(STATUS "Warning: Boost versions earlier than 1.37 may not compile with GCC 4.4 or later!")
    44   ENDIF()
    45 ENDIF()
    4638
    4739# GCC may not support #pragma GCC system_header correctly when using
  • code/branches/ois_update/cmake/LibraryConfig.cmake

    r7459 r7518  
    167167# No auto linking, so this option is useless anyway
    168168MARK_AS_ADVANCED(Boost_LIB_DIAGNOSTIC_DEFINITIONS)
     169# Complain about incompatibilities
     170COMPARE_VERSION_STRINGS("${GCC_VERSION}" "4.4.0" _compare_result)
     171IF(NOT _compare_result LESS 0)
     172  IF(${Boost_VERSION} LESS 103700)
     173    MESSAGE(STATUS "Warning: Boost versions earlier than 1.37 may not compile with GCC 4.4 or later!")
     174  ENDIF()
     175ENDIF()
    169176
    170177
Note: See TracChangeset for help on using the changeset viewer.