Skip to content
Snippets Groups Projects
Commit 0d01bbad authored by Pere Mato Vila's avatar Pere Mato Vila
Browse files

Minor changes on top of PR 153. https://github.com/root-mirror/root/pull/153

parent 3724d436
No related branches found
No related tags found
No related merge requests found
...@@ -306,9 +306,26 @@ We added a cache specifically for the fast option of the TTreeCloner to signific ...@@ -306,9 +306,26 @@ We added a cache specifically for the fast option of the TTreeCloner to signific
## Class Reference Guide ## Class Reference Guide
## Build, Configuration and Testing Infrastructure ## Build, Configuration and Testing Infrastructure
* Added new 'builtin_vc' option to bundle a version of Vc within ROOT. - Added new 'builtin_vc' option to bundle a version of Vc within ROOT.
The default is OFF, however if the Vc package is not found in the system the option is switched to The default is OFF, however if the Vc package is not found in the system the option is switched to
ON if the option 'vc' option is ON. ON if the option 'vc' option is ON.
- Many improvements (provided by Mattias Ellert):
- Build RFIO using dpm libraries if castor libraries are not available
- Add missing glib header path in GFAL module for version > 2
- Search also for globus libraries wouthout the flavour in the name
- Add missing io/hdfs/CMakeLists.txt
- net/globusauth has no installed headers - remove ROOT_INSTALL_HEADERS()
- Add missing pieces to the cmake config that are built by configure: bin/pq2, bin/rootd, bin/xpdtest, initd and xinitd start-up scripts
- Only link to libgfortranbegin.a when it is provided by the compiler
- Don't remove -Wall without also removing -Werror=*
- Don't overwrite the initial value of CMAKE_Fortran_FLAGS. Inconsistent case variant of CMAKE_Fortran_FLAGS
- Use the same sonames in cmake as in configure
- Allow building for ppc64 as well as ppc64le
- Add build instructions for 32 bit ARM
- Add build instructions for System Z (s390 and s390x)
- Make sure that the roots wrapper can be executed
- Move gl2ps.h to its own subdir
- Added 'builtin-unuran' option (provided by Mattias Ellert)
- Added 'builtin-gl2ps' option (provided by Mattias Ellert)
...@@ -10,7 +10,9 @@ find_path(GL2PS_INCLUDE_DIR NAMES gl2ps.h HINTS ${GL2PS_DIR}/include $ENV{GL2PS_ ...@@ -10,7 +10,9 @@ find_path(GL2PS_INCLUDE_DIR NAMES gl2ps.h HINTS ${GL2PS_DIR}/include $ENV{GL2PS_
find_library(GL2PS_LIBRARY NAMES gl2ps HINTS ${GL2PS_DIR}/lib $ENV{GL2PS_DIR}/lib) find_library(GL2PS_LIBRARY NAMES gl2ps HINTS ${GL2PS_DIR}/lib $ENV{GL2PS_DIR}/lib)
set(GL2PS_INCLUDE_DIRS ${GL2PS_INCLUDE_DIR}) set(GL2PS_INCLUDE_DIRS ${GL2PS_INCLUDE_DIR})
set(GL2PS_LIBRARIES ${GL2PS_LIBRARY}) if(GL2PS_LIBRARY)
set(GL2PS_LIBRARIES ${GL2PS_LIBRARY})
endif()
# handle the QUIETLY and REQUIRED arguments and set GL2PS_FOUND to TRUE if # handle the QUIETLY and REQUIRED arguments and set GL2PS_FOUND to TRUE if
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment