commit 8af1d576d82157cea70ee883ec3194712ab9cc42
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Tue Dec 31 01:52:52 2024 +0100

    Drop -lnsl
    
    We do not use it directly

diff --git a/smbfs/Makefile b/smbfs/Makefile
index 2ee616bc3..03c360c98 100644
--- a/smbfs/Makefile
+++ b/smbfs/Makefile
@@ -1,6 +1,6 @@
 CC=gcc
 CFLAGS=-O0 -g3 -Wall $(shell pkg-config --cflags smbclient)
-LDLIBS=  $(shell pkg-config --libs smbclient)   -lnsl -lnetfs -lfshelp -liohelp -lpthread -lports -lihash -ldl -lshouldbeinlibc
+LDLIBS=  $(shell pkg-config --libs smbclient) -lnetfs -lfshelp -liohelp -lpthread -lports -lihash -ldl -lshouldbeinlibc
 
 smbfs: clean smb.o smbfs.o smbnetfs.o
 	$(CC) smb.o smbfs.o smbnetfs.o -osmbfs $(LDLIBS)
