+2001-03-10 Bruno Haible <haible@clisp.cons.org>
+
+ * Makefile.am (LDADD): Define depending on @USE_INCLUDED_LIBINTL@.
+ (LDADD_yes, LDADD_no): New variables. When @USE_INCLUDED_LIBINTL@ = no,
+ use both ../intl/libgnuintl.a and @INTLLIBS@ instead of
+ ../intl/libintl.la. Needed on systems which have gettext() in
+ libintl.so, because: 1. getopt.c needs -lintl, 2. tstgettext.c needs
+ ../intl/libintl, 3. it is impossible to link with two different shared
+ libraries that have the same soname.
+
2001-03-03 Bruno Haible <haible@clisp.cons.org>
* msgfmt-3: Filter out charset related warning from msgfmt.
verifications.
* gettext-1: Update.
-2001-03-03 Bruno Haible <haible@clisp.cons.org>
-
- * Makefile.am (LDADD): Add @LIBICONV@. Needed on platforms where
- iconv() is not in libc.
-
2001-01-21 Bruno Haible <haible@clisp.cons.org>
Use libtool.
# Two auxiliary programs used by the tests.
INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/intl
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
-LDADD = ../intl/libintl.la @LIBICONV@
+LDADD = $(LDADD_@USE_INCLUDED_LIBINTL@)
+LDADD_yes = ../intl/libintl.la
+LDADD_no = ../intl/libgnuintl.la @INTLLIBS@
EXTRA_PROGRAMS = tstgettext cake
tstgettext_SOURCES = tstgettext.c setlocale.c
tstgettext_LDADD = ../lib/libnlsut.a $(LDADD)