]> Savannah Git Hosting - gnulib.git/commitdiff
Fix link errors on platforms with libintl (e.g. Solaris and AIX).
authorBruno Haible <bruno@clisp.org>
Tue, 17 Nov 2020 01:30:29 +0000 (02:30 +0100)
committerBruno Haible <bruno@clisp.org>
Tue, 17 Nov 2020 01:30:29 +0000 (02:30 +0100)
Reported by Tom G. Christensen <tgc@jupiterrise.com> in
<https://lists.gnu.org/archive/html/bug-gnulib/2020-11/msg00062.html>.

* modules/getumask-tests (Makefile.am): Link test-getumask with
$(LIBINTL).
* modules/stack-tests (Makefile.am): Link test-stack with $(LIBINTL).
* modules/supersede-tests (Makefile.am): Link test-supersede with
$(LIBINTL).
* modules/unicodeio-tests (Makefile.am): Link test-unicodeio with
$(LIBINTL).

ChangeLog
modules/getumask-tests
modules/stack-tests
modules/supersede-tests
modules/unicodeio-tests

index c0c0466eeba63c185513d9efeeccc1b4339928b1..9aa062804c94aaf4fcd33daee8edd30c7fbb852b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2020-11-16  Bruno Haible  <bruno@clisp.org>
+
+       Fix link errors on platforms with libintl (e.g. Solaris and AIX).
+       Reported by Tom G. Christensen <tgc@jupiterrise.com> in
+       <https://lists.gnu.org/archive/html/bug-gnulib/2020-11/msg00062.html>.
+       * modules/getumask-tests (Makefile.am): Link test-getumask with
+       $(LIBINTL).
+       * modules/stack-tests (Makefile.am): Link test-stack with $(LIBINTL).
+       * modules/supersede-tests (Makefile.am): Link test-supersede with
+       $(LIBINTL).
+       * modules/unicodeio-tests (Makefile.am): Link test-unicodeio with
+       $(LIBINTL).
+
 2020-11-16  Bruno Haible  <bruno@clisp.org>
 
        getumask: Document link dependencies.
index efded3428fd5828285aa7c0f39411b281fdf2f19..29b91c7027730b9ad640bebf2ee24d366812df52 100644 (file)
@@ -10,4 +10,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-getumask
 check_PROGRAMS += test-getumask
-test_getumask_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM)
+test_getumask_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM) $(LIBINTL)
index 308d7258ec5e99206d146e70c6a569b912297336..b38e3500835c4ed1c52b71d841ba81e1bbd537ce 100644 (file)
@@ -11,3 +11,4 @@ Makefile.am:
 TESTS += test-stack
 check_PROGRAMS += test-stack
 test_stack_SOURCES = test-stack.c
+test_stack_LDADD = $(LDADD) $(LIBINTL)
index 932cd2ce5a6a7c2c93e7e5cff8c96a19b6b2cf05..75c886bff822c05f8f0d03f984ab42dba1de6ab6 100644 (file)
@@ -19,4 +19,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-supersede
 check_PROGRAMS += test-supersede
-test_supersede_LDADD = $(LDADD) $(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM)
+test_supersede_LDADD = $(LDADD) $(LIB_ACL) $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM) $(LIBINTL)
index d771ff81f4d6af47a20fee3b4f69540d2c2fdc67..aa5803cf1071a76d8a0c9d6a4697e09aa45d4a33 100644 (file)
@@ -18,4 +18,4 @@ gt_LOCALE_ZH_CN
 Makefile.am:
 TESTS += test-unicodeio1.sh test-unicodeio2.sh test-unicodeio3.sh
 check_PROGRAMS += test-unicodeio
-test_unicodeio_LDADD = $(LDADD) $(LIB_SETLOCALE) $(LIBICONV)
+test_unicodeio_LDADD = $(LDADD) $(LIB_SETLOCALE) $(LIBICONV) $(LIBINTL)