Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta <antenore@simbiosi.org>2018-05-09 00:16:43 +0300
committerAntenore Gatta <antenore@simbiosi.org>2018-05-09 00:16:43 +0300
commit49bb97e49be7b6e55badaf5f1b44c3fe6e14c3f3 (patch)
tree96fac2f7eacb2a8342a4aa61698c1afde7f826af /CMakeLists.txt
parent466c986308da28a3856d27691e29d51f8a785908 (diff)
Add intl support for OpenBSD and NetBSD. #1604
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8a9c54009..8e1a8a63d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -251,8 +251,8 @@ if(GTK_FOUND)
endif()
find_package(Intl)
-if(INTL_FOUND AND "${CMAKE_SYSTEM_NAME}" MATCHES "FreeBSD")
- message(STATUS "FreeBSD detected, building with Intl")
+if(INTL_FOUND AND "${CMAKE_SYSTEM_NAME}" MATCHES "FreeBSD|OpenBSD|NetBSD")
+ message(STATUS "${CMAKE_SYSTEM_NAME} detected, of type BSD, building with Intl")
include_directories(${Intl_INCLUDE_DIRS})
target_link_libraries(remmina ${Intl_LIBRARIES})
endif()