From: Bruno Haible Date: Wed, 19 Feb 2003 13:16:55 +0000 (+0000) Subject: Avoid a link error on OSF/1. X-Git-Tag: v0.12~193 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d67ea9ca09840d30b667b0086a595aa2be53ea6;p=thirdparty%2Fgettext.git Avoid a link error on OSF/1. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index c94c5d8ba..2c3ca71c2 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,11 @@ +2003-02-19 Bruno Haible + + * Makefile.am (xgettext_LDADD): Mention $(LIBUNINAME) before + libgettextsrc.la, not after it. Needed avoid link error on OSF/1 4.0: + libtool produces a link command line that contains "-lc" where a + shared library was used, and on OSF/1 4.0 "-lc" must not be used + before objects that use integer division. + 2003-02-18 Bruno Haible * message.c (msgdomain_list_free): Uncomment this function. diff --git a/gettext-tools/src/Makefile.am b/gettext-tools/src/Makefile.am index 074391afe..f2f0cb67b 100644 --- a/gettext-tools/src/Makefile.am +++ b/gettext-tools/src/Makefile.am @@ -157,7 +157,7 @@ msgcmp_LDADD = libgettextsrc.la msgfmt_LDADD = libgettextsrc.la msgmerge_LDADD = libgettextsrc.la msgunfmt_LDADD = libgettextsrc.la -xgettext_LDADD = libgettextsrc.la $(LIBUNINAME) @LTLIBEXPAT@ +xgettext_LDADD = $(LIBUNINAME) libgettextsrc.la @LTLIBEXPAT@ msgattrib_LDADD = libgettextsrc.la msgcat_LDADD = libgettextsrc.la msgcomm_LDADD = libgettextsrc.la