From: Bruno Haible Date: Sun, 6 Jun 2010 17:58:43 +0000 (+0200) Subject: Avoid link error in programs that use libgettextpo. X-Git-Tag: v0.18.1.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e21a72f048684fa63d2316646df24a4444a39a;p=thirdparty%2Fgettext.git Avoid link error in programs that use libgettextpo. --- diff --git a/gettext-tools/libgettextpo/ChangeLog b/gettext-tools/libgettextpo/ChangeLog index df8471b45..74e29c158 100644 --- a/gettext-tools/libgettextpo/ChangeLog +++ b/gettext-tools/libgettextpo/ChangeLog @@ -1,3 +1,9 @@ +2010-06-06 Bruno Haible + + Avoid link error in programs that use libgettextpo. + * Makefile.am (libgettextpo_la_LIBADD): Add $(LTLIBUNISTRING). + Reported by Dmitry V. Levin . + 2010-06-04 Bruno Haible * gettext-0.18.1 released. diff --git a/gettext-tools/libgettextpo/Makefile.am b/gettext-tools/libgettextpo/Makefile.am index 6ea1d5b7d..a96c36de0 100644 --- a/gettext-tools/libgettextpo/Makefile.am +++ b/gettext-tools/libgettextpo/Makefile.am @@ -98,7 +98,7 @@ LTV_AGE=5 # How to build libgettextpo.la. # Don't make it depend on libgettextsrc.la or libgettextlib.la, since they # define an uncontrolled amount of symbols. -libgettextpo_la_LIBADD = libgnu.la $(WOE32_LIBADD) +libgettextpo_la_LIBADD = libgnu.la $(WOE32_LIBADD) $(LTLIBUNISTRING) libgettextpo_la_LDFLAGS = \ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ -rpath $(libdir) \