diff --git a/cmake/modules/RootBuildOptions.cmake b/cmake/modules/RootBuildOptions.cmake index 80fc310b76453..7d67f809ebb83 100644 --- a/cmake/modules/RootBuildOptions.cmake +++ b/cmake/modules/RootBuildOptions.cmake @@ -413,15 +413,15 @@ foreach(opt afdsmgrd afs alien bonjour castor chirp cxx11 cxx14 cxx17 geocad gfa endforeach() #---Deprecated options------------------------------------------------------------------------ -foreach(opt cxxmodules exceptions oracle pythia6 pythia6_nolink minuit2) +foreach(opt cxxmodules exceptions oracle pythia6 pythia6_nolink) if(${opt}) message(DEPRECATION ">>> Option '${opt}' is deprecated and will be removed in the next release of ROOT. Please contact root-dev@cern.ch should you still need it.") endif() endforeach() -foreach(opt builtin_afterimage) +foreach(opt builtin_afterimage minuit2) if(NOT ${opt}) - message(DEPRECATION ">>> Option '${opt}' is deprecated and will be removed in the next release of ROOT. It should always be ON. Please contact root-dev@cern.ch should you still need it.") + message(DEPRECATION ">>> Option '${opt}' is deprecated: in the future it will always be set to ON. In the next release of ROOT, you will no longer be able to disable this feature. Please contact root-dev@cern.ch should you still need disabling it.") endif() endforeach()