rough inclusion of external getaddrinfo

This commit is contained in:
Dima Pulkinen 2024-02-26 16:14:13 +02:00
parent 7b0aae7052
commit 4975a4234d
3 changed files with 11 additions and 1 deletions

View File

@ -18,6 +18,10 @@
#include "socket.h"
#include "timeout.h"
#ifndef HAVE_GETADDRINFO
#include "getaddrinfo.h"
#endif
#ifdef _WIN32
#define LUASOCKET_INET_ATON
#endif

View File

@ -285,7 +285,7 @@ SOCKET=$(SOCKET_$(PLAT))
#
CC=$(CC_$(PLAT))
DEF=$(DEF_$(PLAT))
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT))
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DSTDC_HEADERS -DHAVE_STDLIB_H
LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT))
LD=$(LD_$(PLAT))
LUAINC= $(LUAINC_$(PLAT))
@ -295,6 +295,7 @@ LUALIB= $(LUALIB_$(PLAT))
# Modules belonging to socket-core
#
SOCKET_OBJS= \
getaddrinfo.$(O) \
luasocket.$(O) \
timeout.$(O) \
buffer.$(O) \
@ -459,3 +460,4 @@ unix.$(O): unix.c auxiliar.h socket.h io.h timeout.h usocket.h \
options.h unix.h buffer.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

View File

@ -31,6 +31,10 @@
#include <netinet/tcp.h>
#include <net/if.h>
#ifndef HAVE_GETADDRINFO
#include "getaddrinfo.h"
#endif
#ifndef SO_REUSEPORT
#define SO_REUSEPORT SO_REUSEADDR
#endif