summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2007-04-12 23:20:57 +0000
committerBruno Haible <bruno@clisp.org>2007-04-12 23:20:57 +0000
commit0f575ab0f1d6f90be4b1a05bd7f1a4347f7cb974 (patch)
tree91ab82c950517d419a8c200a1f6c3249ab7fa304
parent763d9efb32042b67b1b7bba057dc61c4be829584 (diff)
downloadgnulib-0f575ab0f1d6f90be4b1a05bd7f1a4347f7cb974.tar.gz
Fix link error on Cygwin.
-rw-r--r--ChangeLog9
-rw-r--r--modules/iconv-tests2
-rw-r--r--modules/striconv-tests2
-rw-r--r--modules/striconveh-tests2
-rw-r--r--modules/striconveha-tests2
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 <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@