From 0f575ab0f1d6f90be4b1a05bd7f1a4347f7cb974 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Thu, 12 Apr 2007 23:20:57 +0000 Subject: [PATCH] Fix link error on Cygwin. --- ChangeLog | 9 +++++++++ modules/iconv-tests | 2 +- modules/striconv-tests | 2 +- modules/striconveh-tests | 2 +- modules/striconveha-tests | 2 +- 5 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d78b5f4f51..2232141613 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-04-12 Bruno Haible + + * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD, + not before, since $(LDADD) often contains libgnu.a. + * modules/striconv-tests (test_striconv_LDADD): Likewise. + * modules/striconveh-tests (test_striconveh_LDADD): Likewise. + * modules/striconveha-tests (test_striconveha_LDADD): Likewise. + Needed on Cygwin. + 2007-04-12 Eric Blake Work around glibc's failure to flush stdin on fclose. diff --git a/modules/iconv-tests b/modules/iconv-tests index 511d31218c..47381d45b2 100644 --- a/modules/iconv-tests +++ b/modules/iconv-tests @@ -8,5 +8,5 @@ configure.ac: Makefile.am: TESTS += test-iconv check_PROGRAMS += test-iconv -test_iconv_LDADD = @LIBICONV@ $(LDADD) +test_iconv_LDADD = $(LDADD) @LIBICONV@ diff --git a/modules/striconv-tests b/modules/striconv-tests index 9f12ca0b9d..5efc9e058c 100644 --- a/modules/striconv-tests +++ b/modules/striconv-tests @@ -8,5 +8,5 @@ configure.ac: Makefile.am: TESTS += test-striconv check_PROGRAMS += test-striconv -test_striconv_LDADD = @LIBICONV@ $(LDADD) +test_striconv_LDADD = $(LDADD) @LIBICONV@ diff --git a/modules/striconveh-tests b/modules/striconveh-tests index 91d1ae4c88..1569f2bdb7 100644 --- a/modules/striconveh-tests +++ b/modules/striconveh-tests @@ -8,5 +8,5 @@ configure.ac: Makefile.am: TESTS += test-striconveh check_PROGRAMS += test-striconveh -test_striconveh_LDADD = @LIBICONV@ $(LDADD) +test_striconveh_LDADD = $(LDADD) @LIBICONV@ diff --git a/modules/striconveha-tests b/modules/striconveha-tests index 0675c7a94e..1effb575d9 100644 --- a/modules/striconveha-tests +++ b/modules/striconveha-tests @@ -8,5 +8,5 @@ configure.ac: Makefile.am: TESTS += test-striconveha check_PROGRAMS += test-striconveha -test_striconveha_LDADD = @LIBICONV@ $(LDADD) +test_striconveha_LDADD = $(LDADD) @LIBICONV@ -- 2.30.2