mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-04-06 17:06:46 +02:00
rough inclusion of external getaddrinfo
This commit is contained in:
parent
7b0aae7052
commit
4975a4234d
@ -18,6 +18,10 @@
|
|||||||
#include "socket.h"
|
#include "socket.h"
|
||||||
#include "timeout.h"
|
#include "timeout.h"
|
||||||
|
|
||||||
|
#ifndef HAVE_GETADDRINFO
|
||||||
|
#include "getaddrinfo.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#define LUASOCKET_INET_ATON
|
#define LUASOCKET_INET_ATON
|
||||||
#endif
|
#endif
|
||||||
|
@ -285,7 +285,7 @@ SOCKET=$(SOCKET_$(PLAT))
|
|||||||
#
|
#
|
||||||
CC=$(CC_$(PLAT))
|
CC=$(CC_$(PLAT))
|
||||||
DEF=$(DEF_$(PLAT))
|
DEF=$(DEF_$(PLAT))
|
||||||
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT))
|
CFLAGS=$(MYCFLAGS) $(CFLAGS_$(PLAT)) -DSTDC_HEADERS -DHAVE_STDLIB_H
|
||||||
LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT))
|
LDFLAGS=$(MYLDFLAGS) $(LDFLAGS_$(PLAT))
|
||||||
LD=$(LD_$(PLAT))
|
LD=$(LD_$(PLAT))
|
||||||
LUAINC= $(LUAINC_$(PLAT))
|
LUAINC= $(LUAINC_$(PLAT))
|
||||||
@ -295,6 +295,7 @@ LUALIB= $(LUALIB_$(PLAT))
|
|||||||
# Modules belonging to socket-core
|
# Modules belonging to socket-core
|
||||||
#
|
#
|
||||||
SOCKET_OBJS= \
|
SOCKET_OBJS= \
|
||||||
|
getaddrinfo.$(O) \
|
||||||
luasocket.$(O) \
|
luasocket.$(O) \
|
||||||
timeout.$(O) \
|
timeout.$(O) \
|
||||||
buffer.$(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
|
options.h unix.h buffer.h
|
||||||
usocket.$(O): usocket.c 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
|
wsocket.$(O): wsocket.c socket.h io.h timeout.h usocket.h
|
||||||
|
getaddrinfo.$(O): getaddrinfo.c getaddrinfo.h
|
||||||
|
@ -31,6 +31,10 @@
|
|||||||
#include <netinet/tcp.h>
|
#include <netinet/tcp.h>
|
||||||
#include <net/if.h>
|
#include <net/if.h>
|
||||||
|
|
||||||
|
#ifndef HAVE_GETADDRINFO
|
||||||
|
#include "getaddrinfo.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef SO_REUSEPORT
|
#ifndef SO_REUSEPORT
|
||||||
#define SO_REUSEPORT SO_REUSEADDR
|
#define SO_REUSEPORT SO_REUSEADDR
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user