summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-09-05 00:02:44 +0200
committerBruno Haible <bruno@clisp.org>2022-09-05 00:03:44 +0200
commitaa92cf3e6f9dd3587d2c0bd3fb3427f3d96f31f0 (patch)
tree6210c78ae58fe36ba8fc0ca804ff3163a3fe2b29
parent71486fdaa85431c63154205def0176d1fe4a189f (diff)
downloadgnulib-aa92cf3e6f9dd3587d2c0bd3fb3427f3d96f31f0.tar.gz
glob tests: Fix link error on mingw.
* modules/glob-tests (Makefile.am): Link test-glob with $(LIBINTL).
-rw-r--r--ChangeLog5
-rw-r--r--modules/glob-tests2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ca354bcf05..c6941dd485 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2022-09-04 Bruno Haible <bruno@clisp.org>
+ glob tests: Fix link error on mingw.
+ * modules/glob-tests (Makefile.am): Link test-glob with $(LIBINTL).
+
+2022-09-04 Bruno Haible <bruno@clisp.org>
+
timespec_get: Fix compilation error with MSVC 14.
* m4/gettime.m4 (gl_CHECK_FUNC_TIMESPEC_GET): New macro.
(gl_GETTIME): Use it instead of AC_CHECK_FUNCS_ONCE.
diff --git a/modules/glob-tests b/modules/glob-tests
index afce2dbca0..5054196a23 100644
--- a/modules/glob-tests
+++ b/modules/glob-tests
@@ -12,7 +12,7 @@ configure.ac:
Makefile.am:
TESTS += test-glob
check_PROGRAMS += test-glob
-test_glob_LDADD = $(LDADD) $(LIB_MBRTOWC)
+test_glob_LDADD = $(LDADD) $(LIBINTL) $(LIB_MBRTOWC)
MOSTLYCLEANFILES += \
test-glob.tglobfile \
test-glob.tgloblink1 \