-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmc-3629-Linking-fix-for-gettext.patch
45 lines (35 loc) · 1.56 KB
/
mc-3629-Linking-fix-for-gettext.patch
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
From 2a97524b42eeececd2ecd928a1154da1f5b7378a Mon Sep 17 00:00:00 2001
From: Andreas Mohr <and@gmx.li>
Date: Fri, 1 Apr 2016 06:44:22 +0000
Subject: [PATCH] Linking fix for non-default gettext package
mc lost the linking game if gettext package pulled from outside of system paths.
(Pulling can be done by suitable C-/CPP/LDFLAGS settings)
Furthermore gettext package depends on libintl (if system lib
don't provide needed functions) then gettext prepare INITLIBS/LIBINTL variable
for working libintl pull in from gettext libdir.
https://www.gnu.org/software/gettext/FAQ.html#integrating_undefined
Let respect LIBINTL variable at linking (it is empty if not needed).
Failure example for Solaris 10 with non-system-default gettext package:
Undefined first referenced
symbol in file
libintl_bind_textdomain_codeset ./.libs/libinternal.a(args.o)
libintl_gettext main.o
libintl_textdomain main.o
libintl_bindtextdomain main.o
libintl_ngettext ./.libs/libinternal.a(midnight.o)
Signed-off-by: Andreas Mohr <and@gmx.li>
---
src/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index cb2e87e..18fe0ff 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -53,7 +53,8 @@ libinternal_la_LIBADD = \
mc_LDADD = \
libinternal.la \
- $(top_builddir)/lib/libmc.la
+ $(top_builddir)/lib/libmc.la \
+ $(LIBINTL)
if ENABLE_VFS_SMB
# this is a hack for linking with own samba library in simple way