summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-03-05 15:00:14 +0000
committerBruno Haible <bruno@clisp.org>2001-03-05 15:00:14 +0000
commitbe5ef702e8bf46f0cf173dba6b4f330f25ad3203 (patch)
tree57288cc0b5932fbaf786936545967d908f04dec3 /tests
parentb26d1fc817ddf8752858b597c6127e0c30c2a84b (diff)
downloadexternal_gettext-be5ef702e8bf46f0cf173dba6b4f330f25ad3203.zip
external_gettext-be5ef702e8bf46f0cf173dba6b4f330f25ad3203.tar.gz
external_gettext-be5ef702e8bf46f0cf173dba6b4f330f25ad3203.tar.bz2
Add -liconv where needed on platforms which have iconv() outside libc.
Diffstat (limited to 'tests')
-rw-r--r--tests/ChangeLog5
-rw-r--r--tests/Makefile.am2
2 files changed, 6 insertions, 1 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 570316f..b618b98 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,8 @@
+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.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b01247e..da57914 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -46,7 +46,7 @@ xg-test1.ok.po: $(top_srcdir)/src/xgettext.c $(top_srcdir)/src/msgfmt.c \
# 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
+LDADD = ../intl/libintl.la @LIBICONV@
EXTRA_PROGRAMS = tstgettext cake
tstgettext_SOURCES = tstgettext.c setlocale.c
tstgettext_LDADD = ../lib/libnlsut.a $(LDADD)