blob: cc1ceca898b9bffb5f13754f80f3035c35dd7a50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
From 45ed3aa6be6d70cf76a4f10c81684ab86cb5017f Mon Sep 17 00:00:00 2001
From: Romain Naour <romain.naour@gmail.com>
Date: Mon, 12 Jun 2017 21:57:05 +0200
Subject: [PATCH] CMake: link with Intl when necessary
On non Glibc system linking with Intl library may be needed when
Gettext support is enabled.
Fixes:
clientlauncher.cpp:(.text+0xcac): undefined reference to `libintl_gettext'
clientlauncher.cpp:(.text+0xdf0): undefined reference to `libintl_gettext'
Signed-off-by: Romain Naour <romain.naour@gmail.com>
---
src/CMakeLists.txt | 10 ++++++++++
1 file changed, 10 insertions(+)
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -70,6 +70,14 @@ if(ENABLE_GETTEXT)
endif()
set(USE_GETTEXT TRUE)
message(STATUS "GetText enabled; locales found: ${GETTEXT_AVAILABLE_LOCALES}")
+ # On some platforms, such as Linux with GNU libc, the gettext
+ # functions are present in the C standard library and libintl
+ # is not required. For other libc (uClibc-ng or musl) libintl
+ # may be required.
+ find_package(Intl)
+ if(NOT Intl_LIBRARIES STREQUAL "")
+ message(STATUS "GetText Intl : ${Intl_LIBRARIES}")
+ endif()
endif(GETTEXT_FOUND)
else()
mark_as_advanced(GETTEXT_ICONV_DLL GETTEXT_INCLUDE_DIR GETTEXT_LIBRARY GETTEXT_MSGFMT)
@@ -554,6 +554,7 @@
${BZIP2_LIBRARIES}
${PNG_LIBRARIES}
${X11_LIBRARIES}
+ ${Intl_LIBRARIES}
${SOUND_LIBRARIES}
${SQLITE3_LIBRARY}
${LUA_LIBRARY}
@@ -623,6 +624,7 @@
${ZLIB_LIBRARIES}
${SQLITE3_LIBRARY}
${JSON_LIBRARY}
+ ${Intl_LIBRARIES}
${LUA_LIBRARY}
${GMP_LIBRARY}
${PLATFORM_LIBS}
|