Skip to content

Commit

Permalink
cmake: set lockmgr to off per default
Browse files Browse the repository at this point in the history
We don't need the lockmgr and it collides with modern c++
threads so we disable it.
  • Loading branch information
pstorz authored and franku committed Sep 6, 2018
1 parent 7d03f64 commit 363ba81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/cmake/BareosSetVariableDefaults.cmake
Expand Up @@ -252,8 +252,8 @@ ENDIF()

# lockmgr
IF(NOT DEFINED lockmgr)
SET(lockmgr ON)
set(LOCKMGR 1)
SET(lockmgr OFF)
set(LOCKMGR 0)
ENDIF()

# smartalloc
Expand Down

0 comments on commit 363ba81

Please sign in to comment.