ports/sysutils/bareos-server/files/patch-core-cmake_BareosSetVariableDefaults.cmake
Jose Alonso Cardenas Marquez 54bdc01076 - Update to 19.2.5
- Add support for RADOS and GFAPI (plugins and storage) [1]
- Bareos ports are compiled with fastlz (compress file with LZ4/LZ4HC/FastLZ)
  by default
- Add python3 support

[1] https://docs.bareos.org/TasksAndConcepts/Plugins.html
[1] https://docs.bareos.org/TasksAndConcepts/StorageBackends.html

ChangeLog at:   https://docs.bareos.org/Appendix/ReleaseNotes.html
2020-02-04 21:52:45 +00:00

15 lines
375 B
CMake

--- core/cmake/BareosSetVariableDefaults.cmake 2020-01-31 16:21:15.864122000 -0500
+++ core/cmake/BareosSetVariableDefaults.cmake 2020-01-31 16:23:58.960984000 -0500
@@ -641,7 +641,11 @@
set(PACKAGE_URL "\"\"")
set(PACKAGE_VERSION "\"${BAREOS_NUMERIC_VERSION}\"")
-set(ENABLE_NLS 1)
+if(nls)
+ SET(ENABLE_NLS 1)
+else()
+ SET(ENABLE_NLS 0)
+endif()
if(HAVE_WIN32)