[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/7] Update LDADD for recent Gnulib
From: |
Paul Eggert |
Subject: |
[PATCH 3/7] Update LDADD for recent Gnulib |
Date: |
Thu, 26 Jan 2023 14:17:34 -0800 |
* Makefile.am (LDADD_FOR_GNULIB): Use CLOCK_TIME_LIB
instead of LIB_CLOCK_GETTIME, and GETRANDOM_LIB instead
of LIB_GETRANDOM, as per recent changes to Gnulib.
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 91f97a7..cdae3e7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -186,7 +186,7 @@ LDADD_FOR_GNULIB = lib/libgnulib--partial.la
# Gnulib scrits tell me I should link with these libraries; the variables
expand
# to nothing on GNU, but they should be needed on some other system.
-LDADD_FOR_GNULIB += $(LIB_CLOCK_GETTIME) $(LIB_GETRANDOM) $(LTLIBINTL)
+LDADD_FOR_GNULIB += $(CLOCK_TIME_LIB) $(GETRANDOM_LIB) $(LTLIBINTL)
# Allow everything but Gnulib to be built with a single-level Makefile, as I
# prefer; the only recusrive make invokation we need is for building libgnulib
.
--
2.39.1
- [PATCH 0/7] improve porting and Gnulib integration, Paul Eggert, 2023/01/26
- [PATCH 2/7] Update bootstrap from Gnulib, Paul Eggert, 2023/01/26
- [PATCH 5/7] Omit some redundant include directives, Paul Eggert, 2023/01/26
- [PATCH 3/7] Update LDADD for recent Gnulib,
Paul Eggert <=
- [PATCH 7/7] Remove unused attribute macro, Paul Eggert, 2023/01/26
- [PATCH 1/7] Port bootstrap.conf BREs to POSIX, Paul Eggert, 2023/01/26
- [PATCH 6/7] Simplify __attribute__ tests, less porting hassle, Paul Eggert, 2023/01/26
- [PATCH 4/7] Don’t assume compilers don’t output to stderr, Paul Eggert, 2023/01/26