| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 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/bareos20-server/files/ |
Upload File : |
--- core/CMakeLists.txt 2020-12-16 02:46:16.000000000 -0500
+++ core/CMakeLists.txt 2020-12-26 21:28:44.141734000 -0500
@@ -256,7 +256,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")
@@ -323,8 +325,11 @@
add_definitions("-D_FILE_OFFSET_BITS=64")
endif()
-include(FindIntl)
+IF(nls)
+ INCLUDE(FindIntl)
+ENDIF()
+
if(developer)
add_definitions("-DDEVELOPER=1")
endif()
@@ -347,7 +352,7 @@
if(NOT client-only)
# droplet does not build on solaris because of sys/cdefs.h: No such file or
# directory
- if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS")
+ if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "SunOS|FreeBSD")
if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/src/droplet/CMakeLists.txt)
message(
FATAL_ERROR
@@ -771,7 +776,6 @@
add_subdirectory(scripts)
add_subdirectory(manpages)
-add_subdirectory(platforms)
add_subdirectory(src)
include(BareosLocalBuildDefinitions OPTIONAL