diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | modules/iconv-tests | 2 | ||||
-rw-r--r-- | modules/striconv-tests | 2 | ||||
-rw-r--r-- | modules/striconveh-tests | 2 | ||||
-rw-r--r-- | modules/striconveha-tests | 2 |
5 files changed, 13 insertions, 4 deletions
@@ -1,3 +1,12 @@ +2007-04-12 Bruno Haible <bruno@clisp.org> + + * 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 <ebb9@byu.net> 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@ |