summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-08-31 08:50:47 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-09-09 16:59:47 +0200
commit43963c96cf38e7ec5b895ce02e6ea121272b96e1 (patch)
treecc11022be4492d1f6092d84e896a9723aa8ed79f
parent95248f6b9b05d8d48f075388a160df119cd0ef59 (diff)
downloadsssd-43963c96cf38e7ec5b895ce02e6ea121272b96e1.tar.gz
sssd-43963c96cf38e7ec5b895ce02e6ea121272b96e1.tar.xz
sssd-43963c96cf38e7ec5b895ce02e6ea121272b96e1.zip
AUTOMAKE: Use portable way to link with gettext
Function gettext needn't be included in libc, it can be part of another library. Autotools macro AM_GNU_GETTEXT generate makefile variables (LIBINTL, LTLIBINTL), which contain necessary linker flags. checking for GNU gettext in libc... no checking for iconv... yes checking for GNU gettext in libintl... yes checking whether to use NLS... yes checking where the gettext function comes from... external libintl
-rw-r--r--Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index c79095b38..0d75ec758 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -356,6 +356,7 @@ PYTHON_BINDINGS_LIBS = \
$(TDB_LIBS)
TOOLS_LIBS = \
+ $(LTLIBINTL) \
$(TALLOC_LIBS) \
$(TEVENT_LIBS) \
$(POPT_LIBS) \
@@ -505,8 +506,10 @@ if BUILD_SUDO
SSSD_DOCS += libsss_sudo_doc
endif
+CLIENT_LIBS = $(LTLIBINTL)
+
if HAVE_PTHREAD
-CLIENT_LIBS = -lpthread
+CLIENT_LIBS += -lpthread
endif
#####################