Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 629972
Collapse All | Expand All

(-)cmake-3.9.1.orig/Modules/FindBoost.cmake (-3 / +27 lines)
Lines 554-560 function(_Boost_COMPONENT_DEPENDENCIES c Link Here
554
  # The addition of a new release should only require it to be run
554
  # The addition of a new release should only require it to be run
555
  # against the new release.
555
  # against the new release.
556
  set(_Boost_IMPORTED_TARGETS TRUE)
556
  set(_Boost_IMPORTED_TARGETS TRUE)
557
  if(NOT Boost_VERSION VERSION_LESS 103300 AND Boost_VERSION VERSION_LESS 103500)
557
  if(Boost_VERSION VERSION_LESS 103300)
558
    message(WARNING "Imported targets and dependency information not available for Boost version ${Boost_VERSION} (all versions older than 1.33)")
559
    set(_Boost_IMPORTED_TARGETS FALSE)
560
  elseif(NOT Boost_VERSION VERSION_LESS 103300 AND Boost_VERSION VERSION_LESS 103500)
558
    set(_Boost_IOSTREAMS_DEPENDENCIES regex thread)
561
    set(_Boost_IOSTREAMS_DEPENDENCIES regex thread)
559
    set(_Boost_REGEX_DEPENDENCIES thread)
562
    set(_Boost_REGEX_DEPENDENCIES thread)
560
    set(_Boost_WAVE_DEPENDENCIES filesystem thread)
563
    set(_Boost_WAVE_DEPENDENCIES filesystem thread)
Lines 768-775 function(_Boost_COMPONENT_DEPENDENCIES c Link Here
768
    set(_Boost_WAVE_DEPENDENCIES filesystem system serialization thread chrono date_time atomic)
771
    set(_Boost_WAVE_DEPENDENCIES filesystem system serialization thread chrono date_time atomic)
769
    set(_Boost_WSERIALIZATION_DEPENDENCIES serialization)
772
    set(_Boost_WSERIALIZATION_DEPENDENCIES serialization)
770
  else()
773
  else()
771
    message(WARNING "Imported targets not available for Boost version ${Boost_VERSION}")
774
    if(NOT Boost_VERSION VERSION_LESS 106500)
772
    set(_Boost_IMPORTED_TARGETS FALSE)
775
      set(_Boost_CHRONO_DEPENDENCIES system)
776
      set(_Boost_CONTEXT_DEPENDENCIES thread chrono system date_time)
777
      set(_Boost_COROUTINE_DEPENDENCIES context system)
778
      set(_Boost_FIBER_DEPENDENCIES context thread chrono system date_time)
779
      set(_Boost_FILESYSTEM_DEPENDENCIES system)
780
      set(_Boost_IOSTREAMS_DEPENDENCIES regex)
781
      set(_Boost_LOG_DEPENDENCIES date_time log_setup system filesystem thread regex chrono atomic)
782
      set(_Boost_MATH_DEPENDENCIES math_c99 math_c99f math_c99l math_tr1 math_tr1f math_tr1l atomic)
783
      set(_Boost_MPI_DEPENDENCIES serialization)
784
      set(_Boost_MPI_PYTHON_DEPENDENCIES python mpi serialization)
785
      set(_Boost_NUMPY_DEPENDENCIES python)
786
      set(_Boost_RANDOM_DEPENDENCIES system)
787
      set(_Boost_THREAD_DEPENDENCIES chrono system date_time atomic)
788
      set(_Boost_WAVE_DEPENDENCIES filesystem system serialization thread chrono date_time atomic)
789
      set(_Boost_WSERIALIZATION_DEPENDENCIES serialization)
790
    endif()
791
    if(NOT Boost_VERSION VERSION_LESS 106600)
792
      message(WARNING "New Boost version may have incorrect or missing dependencies and imported targets")
793
      set(_Boost_IMPORTED_TARGETS FALSE)
794
    endif()
773
  endif()
795
  endif()
774
796
775
  string(TOUPPER ${component} uppercomponent)
797
  string(TOUPPER ${component} uppercomponent)
Lines 819-824 function(_Boost_COMPONENT_HEADERS compon Link Here
819
  set(_Boost_MATH_TR1L_HEADERS           "boost/math/tr1.hpp")
841
  set(_Boost_MATH_TR1L_HEADERS           "boost/math/tr1.hpp")
820
  set(_Boost_MPI_HEADERS                 "boost/mpi.hpp")
842
  set(_Boost_MPI_HEADERS                 "boost/mpi.hpp")
821
  set(_Boost_MPI_PYTHON_HEADERS          "boost/mpi/python/config.hpp")
843
  set(_Boost_MPI_PYTHON_HEADERS          "boost/mpi/python/config.hpp")
844
  set(_Boost_NUMPY_HEADERS               "boost/python/numpy.hpp")
822
  set(_Boost_PRG_EXEC_MONITOR_HEADERS    "boost/test/prg_exec_monitor.hpp")
845
  set(_Boost_PRG_EXEC_MONITOR_HEADERS    "boost/test/prg_exec_monitor.hpp")
823
  set(_Boost_PROGRAM_OPTIONS_HEADERS     "boost/program_options.hpp")
846
  set(_Boost_PROGRAM_OPTIONS_HEADERS     "boost/program_options.hpp")
824
  set(_Boost_PYTHON_HEADERS              "boost/python.hpp")
847
  set(_Boost_PYTHON_HEADERS              "boost/python.hpp")
Lines 1000-1005 else() Link Here
1000
  # _Boost_COMPONENT_HEADERS.  See the instructions at the top of
1023
  # _Boost_COMPONENT_HEADERS.  See the instructions at the top of
1001
  # _Boost_COMPONENT_DEPENDENCIES.
1024
  # _Boost_COMPONENT_DEPENDENCIES.
1002
  set(_Boost_KNOWN_VERSIONS ${Boost_ADDITIONAL_VERSIONS}
1025
  set(_Boost_KNOWN_VERSIONS ${Boost_ADDITIONAL_VERSIONS}
1026
    "1.65.0" "1.65"
1003
    "1.64.0" "1.64" "1.63.0" "1.63" "1.62.0" "1.62" "1.61.0" "1.61" "1.60.0" "1.60"
1027
    "1.64.0" "1.64" "1.63.0" "1.63" "1.62.0" "1.62" "1.61.0" "1.61" "1.60.0" "1.60"
1004
    "1.59.0" "1.59" "1.58.0" "1.58" "1.57.0" "1.57" "1.56.0" "1.56" "1.55.0" "1.55"
1028
    "1.59.0" "1.59" "1.58.0" "1.58" "1.57.0" "1.57" "1.56.0" "1.56" "1.55.0" "1.55"
1005
    "1.54.0" "1.54" "1.53.0" "1.53" "1.52.0" "1.52" "1.51.0" "1.51"
1029
    "1.54.0" "1.54" "1.53.0" "1.53" "1.52.0" "1.52" "1.51.0" "1.51"

Return to bug 629972