nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit d1e2febb6d15db60cbf000c3dfff60b66575c749
parent 3d0273de45df594806498f8ea3366c1313a3a9b2
Author: Collin Funk <collin.funk1@gmail.com>
Date:   Sat, 24 Aug 2024 17:42:18 -0700

build: update a symbol that was renamed in gnulib

As noted in a gnulib NEWS item of 2023-01-07, linking now happens
against $(CLOCK_TIME_LIB) instead of $(LIB_CLOCK_GETTIME).

Diffstat:
Msrc/Makefile.am | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am @@ -43,7 +43,7 @@ nano_SOURCES = \ winio.c nano_LDADD = @LIBINTL@ $(top_builddir)/lib/libgnu.a \ - $(GETRANDOM_LIB) $(LIB_CLOCK_GETTIME) $(LIBTHREAD) + $(GETRANDOM_LIB) $(CLOCK_TIME_LIB) $(LIBTHREAD) install-exec-hook: cd $(DESTDIR)$(bindir) && rm -f rnano && $(LN_S) nano rnano