From 8b5739dc00cda6083ebd05995a463ffc07f530d1 Mon Sep 17 00:00:00 2001 From: Dima Pulkinen Date: Tue, 27 Feb 2024 13:53:39 +0200 Subject: [PATCH] compile netdb-compat as a part of the build process --- src/makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/makefile b/src/makefile index 433deab..8545b20 100755 --- a/src/makefile +++ b/src/makefile @@ -322,6 +322,7 @@ LUALIB= $(LUALIB_$(PLAT)) # Modules belonging to socket-core # SOCKET_OBJS= \ + netdb-compat.$(O) \ getaddrinfo.$(O) \ luasocket.$(O) \ timeout.$(O) \ @@ -491,3 +492,4 @@ unix.$(O): unix.c auxiliar.h socket.h io.h timeout.h usocket.h \ usocket.$(O): usocket.c socket.h io.h timeout.h usocket.h wsocket.$(O): wsocket.c socket.h io.h timeout.h usocket.h getaddrinfo.$(O): getaddrinfo.c getaddrinfo.h +netdb-compat.$(O): netdb-compat.c netdb-compat.h