From: Bruno Haible Date: Sun, 28 Sep 2008 12:33:37 +0000 (+0000) Subject: msgcmp needs to link with -lm now as well. X-Git-Tag: v0.18~315 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1045b017803ca16adf6c362102e4f48922c17904;p=thirdparty%2Fgettext.git msgcmp needs to link with -lm now as well. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 399b9caf1..577688c97 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,15 @@ +2008-09-28 Bruno Haible + + * Makefile.am (msgcmp_LDADD): Add MSGMERGE_LIBM. + Reported by Rainer Tammer . + +2008-09-27 Bruno Haible + + * lang-table.c (language_table): Add Asturian, Crimean Tatar, Friulian, + Papiamento. + * msginit.c (catalogname_for_locale): Add Asturian, Friulian, + Papiamento. + 2008-09-26 Bruno Haible * write-catalog.c (cmp_by_msgid, cmp_by_filepos): Compare the msgctxt diff --git a/gettext-tools/src/Makefile.am b/gettext-tools/src/Makefile.am index 20894b464..b16112012 100644 --- a/gettext-tools/src/Makefile.am +++ b/gettext-tools/src/Makefile.am @@ -237,7 +237,7 @@ msgmerge_CXXFLAGS = $(AM_CXXFLAGS) $(OPENMP_CFLAGS) # INTL_MACOSX_LIBS is needed because the programs depend on libintl.la # but libtool doesn't put -Wl,-framework options into .la files. # For msginit, it is also needed because of localename.c. -msgcmp_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ $(WOE32_LDADD) +msgcmp_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ @MSGMERGE_LIBM@ $(WOE32_LDADD) msgfmt_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ $(WOE32_LDADD) msgmerge_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ @MSGMERGE_LIBM@ $(WOE32_LDADD) $(OPENMP_CFLAGS) msgunfmt_LDADD = libgettextsrc.la @INTL_MACOSX_LIBS@ $(WOE32_LDADD)