Skip to content

Commit

Permalink
Minor changes on top of PR 153. #153
Browse files Browse the repository at this point in the history
  • Loading branch information
peremato committed Jun 21, 2016
1 parent 3724d43 commit 0d01bba
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
21 changes: 19 additions & 2 deletions README/ReleaseNotes/v608/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,26 @@ We added a cache specifically for the fast option of the TTreeCloner to signific
## Class Reference Guide
## 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
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)
4 changes: 3 additions & 1 deletion cmake/modules/Findgl2ps.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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)

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
Expand Down

0 comments on commit 0d01bba

Please sign in to comment.