Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion EventVisualisation/Workflow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ if(ALIGPU_BUILD_TYPE STREQUAL "O2"
AND GLFW_FOUND
AND TARGET AliceO2::DebugGUI
AND OPENGL_GLU_FOUND
AND NOT CMAKE_SYSTEM_NAME STREQUAL "Darwin"
)
o2_add_executable(display
COMPONENT_NAME eve
Expand Down
4 changes: 2 additions & 2 deletions EventVisualisation/Workflow/src/O2DPLDisplay.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
o2::conf::ConfigurableParam::updateFromString(cfgc.options().get<std::string>("configKeyValues"));
bool useMC = cfgc.options().get<bool>("enable-mc") && !cfgc.options().get<bool>("disable-mc");

char hostname[HOST_NAME_MAX];
gethostname(hostname, HOST_NAME_MAX);
char hostname[_POSIX_HOST_NAME_MAX];
gethostname(hostname, _POSIX_HOST_NAME_MAX);
bool eveHostNameMatch = eveHostName.empty() || eveHostName == hostname;

int eveDDSColIdx = cfgc.options().get<int>("eve-dds-collection-index");
Expand Down