changeset 40079:fc1069683582

Fix link errors in unit tests. Reported by Tom G. Christensen <tgc@jupiterrise.com>. * modules/bitset-tests (Makefile.am): Link test-bitset against libintl. * modules/array-map-tests (Makefile.am): Link test-array_map against libintl. * modules/array-set-tests (Makefile.am): Link test-array_set against libintl. * modules/hash-map-tests (Makefile.am): Link test-hash_map against libintl. * modules/hash-set-tests (Makefile.am): Link test-hash_set against libintl. * modules/linkedhash-map-tests (Makefile.am): Link test-linkedhash_map against libintl. * modules/linkedhash-set-tests (Makefile.am): Link test-linkedhash_set against libintl.
author Bruno Haible <bruno@clisp.org>
date Fri, 04 Jan 2019 20:31:18 +0100
parents 8f1e8acfadfc
children 0fb62d51cadc
files ChangeLog modules/array-map-tests modules/array-set-tests modules/bitset-tests modules/hash-map-tests modules/hash-set-tests modules/linkedhash-map-tests modules/linkedhash-set-tests
diffstat 8 files changed, 25 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Jan 04 20:20:24 2019 +0100
+++ b/ChangeLog	Fri Jan 04 20:31:18 2019 +0100
@@ -1,3 +1,21 @@
+2019-01-04  Bruno Haible  <bruno@clisp.org>
+
+	Fix link errors in unit tests.
+	Reported by Tom G. Christensen <tgc@jupiterrise.com>.
+	* modules/bitset-tests (Makefile.am): Link test-bitset against libintl.
+	* modules/array-map-tests (Makefile.am): Link test-array_map against
+	libintl.
+	* modules/array-set-tests (Makefile.am): Link test-array_set against
+	libintl.
+	* modules/hash-map-tests (Makefile.am): Link test-hash_map against
+	libintl.
+	* modules/hash-set-tests (Makefile.am): Link test-hash_set against
+	libintl.
+	* modules/linkedhash-map-tests (Makefile.am): Link test-linkedhash_map
+	against libintl.
+	* modules/linkedhash-set-tests (Makefile.am): Link test-linkedhash_set
+	against libintl.
+
 2019-01-04  Bruno Haible  <bruno@clisp.org>
 
 	Fix incorrect 'Link' sections.
--- a/modules/array-map-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/array-map-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -12,3 +12,4 @@
 Makefile.am:
 TESTS += test-array_map
 check_PROGRAMS += test-array_map
+test_array_map_LDADD = $(LDADD) @LIBINTL@
--- a/modules/array-set-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/array-set-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -12,3 +12,4 @@
 Makefile.am:
 TESTS += test-array_set
 check_PROGRAMS += test-array_set
+test_array_set_LDADD = $(LDADD) @LIBINTL@
--- a/modules/bitset-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/bitset-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -9,3 +9,4 @@
 Makefile.am:
 TESTS += test-bitset
 check_PROGRAMS += test-bitset
+test_bitset_LDADD = $(LDADD) @LIBINTL@
--- a/modules/hash-map-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/hash-map-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -11,3 +11,4 @@
 Makefile.am:
 TESTS += test-hash_map
 check_PROGRAMS += test-hash_map
+test_hash_map_LDADD = $(LDADD) @LIBINTL@
--- a/modules/hash-set-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/hash-set-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -11,3 +11,4 @@
 Makefile.am:
 TESTS += test-hash_set
 check_PROGRAMS += test-hash_set
+test_hash_set_LDADD = $(LDADD) @LIBINTL@
--- a/modules/linkedhash-map-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/linkedhash-map-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -11,3 +11,4 @@
 Makefile.am:
 TESTS += test-linkedhash_map
 check_PROGRAMS += test-linkedhash_map
+test_linkedhash_map_LDADD = $(LDADD) @LIBINTL@
--- a/modules/linkedhash-set-tests	Fri Jan 04 20:20:24 2019 +0100
+++ b/modules/linkedhash-set-tests	Fri Jan 04 20:31:18 2019 +0100
@@ -11,3 +11,4 @@
 Makefile.am:
 TESTS += test-linkedhash_set
 check_PROGRAMS += test-linkedhash_set
+test_linkedhash_set_LDADD = $(LDADD) @LIBINTL@