| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/sysutils/bareos19-server/files/ |
Upload File : |
--- core/CMakeLists.txt 2020-01-31 12:45:28.110777000 -0500
+++ core/CMakeLists.txt 2020-01-31 12:47:41.413976000 -0500
@@ -249,7 +249,9 @@
set(PSCMD "ps -ax -o pid,command")
include_directories(/usr/local/include)
link_directories(/usr/local/lib)
- link_libraries(intl)
+ IF(nls)
+ link_libraries(intl)
+ ENDIF()
endif()
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
@@ -316,8 +318,11 @@
add_definitions("-D_FILE_OFFSET_BITS=64")
endif()
-include(FindIntl)
+IF(nls)
+ INCLUDE(FindIntl)
+ENDIF()
+
if(developer)
add_definitions("-DDEVELOPER=1")
endif()
@@ -746,7 +751,6 @@
add_subdirectory(scripts)
add_subdirectory(manpages)
-add_subdirectory(platforms)
add_subdirectory(src)
include(BareosLocalBuildDefinitions OPTIONAL