# HG changeset patch # User Bruno Haible # Date 1267990903 -3600 # Node ID 958a8b2b6f9e820f6d744e9d27a1ca23bebe79b3 # Parent 64fcd5e219fe79a7cacf53427f2d7becbde70319 Fix link error on platforms with GNU libiconv. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2010-03-07 Bruno Haible + + Fix link error on platforms with GNU libiconv. + * modules/unistr/u8-strcoll-tests (Makefile): Define + test_u8_strcoll_LDADD. + * modules/unistr/u16-strcoll-tests (Makefile): Define + test_u16_strcoll_LDADD. + * modules/unistr/u32-strcoll-tests (Makefile): Define + test_u32_strcoll_LDADD. + 2010-03-07 Bruno Haible Use POSIX declarations for socket functions. diff --git a/modules/unistr/u16-strcoll-tests b/modules/unistr/u16-strcoll-tests --- a/modules/unistr/u16-strcoll-tests +++ b/modules/unistr/u16-strcoll-tests @@ -12,3 +12,4 @@ TESTS += test-u16-strcoll check_PROGRAMS += test-u16-strcoll test_u16_strcoll_SOURCES = unistr/test-u16-strcoll.c +test_u16_strcoll_LDADD = $(LDADD) @LIBICONV@ diff --git a/modules/unistr/u32-strcoll-tests b/modules/unistr/u32-strcoll-tests --- a/modules/unistr/u32-strcoll-tests +++ b/modules/unistr/u32-strcoll-tests @@ -12,3 +12,4 @@ TESTS += test-u32-strcoll check_PROGRAMS += test-u32-strcoll test_u32_strcoll_SOURCES = unistr/test-u32-strcoll.c +test_u32_strcoll_LDADD = $(LDADD) @LIBICONV@ diff --git a/modules/unistr/u8-strcoll-tests b/modules/unistr/u8-strcoll-tests --- a/modules/unistr/u8-strcoll-tests +++ b/modules/unistr/u8-strcoll-tests @@ -12,3 +12,4 @@ TESTS += test-u8-strcoll check_PROGRAMS += test-u8-strcoll test_u8_strcoll_SOURCES = unistr/test-u8-strcoll.c +test_u8_strcoll_LDADD = $(LDADD) @LIBICONV@