mirror of
https://git.freebsd.org/ports.git
synced 2025-07-12 23:09:19 -04:00
- 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
15 lines
375 B
CMake
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)
|
|
|