]> Savannah Git Hosting - gnulib.git/commitdiff
string-c++-tests, uchar-c++-tests: Fix link errors on Mac OS X.
authorBruno Haible <bruno@clisp.org>
Tue, 3 Oct 2023 08:51:06 +0000 (10:51 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 3 Oct 2023 08:51:06 +0000 (10:51 +0200)
* modules/string-c++-tests (Makefile.am): Link test-string-c++ with
$(LIBC32CONV).
* modules/uchar-c++-tests (Makefile.am): Link test-uchar-c++ with
$(LIBC32CONV).

ChangeLog
modules/string-c++-tests
modules/uchar-c++-tests

index 4e172526b29801b66c34d655950bf5d00bd3db88..aa7b27443020037cd5d7dbdabab4784a34e6564c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2023-10-03  Bruno Haible  <bruno@clisp.org>
+
+       string-c++-tests, uchar-c++-tests: Fix link errors on Mac OS X.
+       * modules/string-c++-tests (Makefile.am): Link test-string-c++ with
+       $(LIBC32CONV).
+       * modules/uchar-c++-tests (Makefile.am): Link test-uchar-c++ with
+       $(LIBC32CONV).
+
 2023-10-03  Bruno Haible  <bruno@clisp.org>
 
        mcel tests: Fix link error.
index 10d117fa903f1103eb7603f2846402cda7d023ec..fb44ae42da99f2e4c87fb3ebc81ccee297e6546e 100644 (file)
@@ -16,5 +16,5 @@ if ANSICXX
 TESTS += test-string-c++
 check_PROGRAMS += test-string-c++
 test_string_c___SOURCES = test-string-c++.cc test-string-c++2.cc
-test_string_c___LDADD = $(LDADD) $(LIBUNISTRING) $(LIBINTL) $(LIBTHREAD)
+test_string_c___LDADD = $(LDADD) $(LIBUNISTRING) $(LIBINTL) $(LIBC32CONV) $(LIBTHREAD)
 endif
index 12183abd52589d2d1764addb2d9b0563178e4a43..bf6640f712a7fe1825cbe0dcef93bf1ed6c91741 100644 (file)
@@ -39,5 +39,5 @@ test_uchar_c___SOURCES = test-uchar-c++.cc
 if CXX_HAVE_CUCHAR
 test_uchar_c___SOURCES += test-uchar-c++2.cc
 endif
-test_uchar_c___LDADD = $(LDADD) $(LIBUNISTRING) $(MBRTOWC_LIB)
+test_uchar_c___LDADD = $(LDADD) $(LIBUNISTRING) $(MBRTOWC_LIB) $(LIBC32CONV)
 endif