Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions builtins/xrootd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

include(ExternalProject)

set(XROOTD_VERSION "5.9.2")
set(XROOTD_VERSION "6.0.0")
set(XROOTD_PREFIX ${CMAKE_BINARY_DIR}/XROOTD-prefix)

message(STATUS "Downloading and building XROOTD version ${XROOTD_VERSION}")
Expand All @@ -26,8 +26,8 @@ endif()

ExternalProject_Add(
BUILTIN_XROOTD
URL http://lcgpackages.web.cern.ch/lcgpackages/tarFiles/sources/xrootd-${XROOTD_VERSION}.tar.gz
URL_HASH SHA256=e29edb755d5f728eff0c74f7bd8cec35c954239ea747975eebd9c1e2bd61edb5
URL https://xrootd.web.cern.ch/download/v6.0.0/xrootd-${XROOTD_VERSION}.tar.gz
Copy link
Copy Markdown
Member

@amadio amadio Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
URL https://xrootd.web.cern.ch/download/v6.0.0/xrootd-${XROOTD_VERSION}.tar.gz
URL https://xrootd.web.cern.ch/download/v${XROOTD_VERSION}/xrootd-${XROOTD_VERSION}.tar.gz

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, we need that on the lcgpackages web anyway...

URL_HASH SHA256=bc8d00b6c0b48f9186e3ad09e8e4e6eedf1067fad68f6d6a4f4e939bcf87007c
INSTALL_DIR ${XROOTD_PREFIX}
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
-DCMAKE_PREFIX_PATH:STRING=${OPENSSL_PREFIX}
Expand Down
Loading