summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-02-19 13:16:55 +0000
committerBruno Haible <bruno@clisp.org>2009-06-23 12:10:12 +0200
commit0d67ea9ca09840d30b667b0086a595aa2be53ea6 (patch)
treed9cd4e0fc865780255eb6169efa1a84cc6385eda
parent28f47995793b0d9efbb7f4ccca65e8df72f60239 (diff)
downloadexternal_gettext-0d67ea9ca09840d30b667b0086a595aa2be53ea6.zip
external_gettext-0d67ea9ca09840d30b667b0086a595aa2be53ea6.tar.gz
external_gettext-0d67ea9ca09840d30b667b0086a595aa2be53ea6.tar.bz2
Avoid a link error on OSF/1.
-rw-r--r--gettext-tools/src/ChangeLog8
-rw-r--r--gettext-tools/src/Makefile.am2
2 files changed, 9 insertions, 1 deletions
diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog
index c94c5d8..2c3ca71 100644
--- a/gettext-tools/src/ChangeLog
+++ b/gettext-tools/src/ChangeLog
@@ -1,3 +1,11 @@
+2003-02-19 Bruno Haible <bruno@clisp.org>
+
+ * 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 <bruno@clisp.org>
* message.c (msgdomain_list_free): Uncomment this function.
diff --git a/gettext-tools/src/Makefile.am b/gettext-tools/src/Makefile.am
index 074391a..f2f0cb6 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