mirror of
https://github.com/libevent/libevent.git
synced 2025-01-31 09:12:55 +08:00
Link with iphlpapi only on windows
Fixes: 9fecb59a ("Parse IPv6 scope IDs.") Refs: #923
This commit is contained in:
parent
9fecb59a94
commit
1495f8b67a
@ -182,6 +182,7 @@ include test/include.am
|
||||
|
||||
if BUILD_WIN32
|
||||
|
||||
SYS_CORE_LIBS = -liphlpapi
|
||||
SYS_LIBS = -lws2_32 -lshell32 -ladvapi32
|
||||
SYS_SRC = win32select.c buffer_iocp.c event_iocp.c \
|
||||
bufferevent_async.c
|
||||
@ -193,6 +194,7 @@ endif
|
||||
|
||||
else
|
||||
|
||||
SYS_CORE_LIBS =
|
||||
SYS_LIBS =
|
||||
SYS_SRC =
|
||||
SYS_INCLUDES =
|
||||
@ -270,11 +272,11 @@ AM_LDFLAGS = $(LIBEVENT_LDFLAGS)
|
||||
GENERIC_LDFLAGS = -version-info $(VERSION_INFO) $(RELEASE) $(NO_UNDEFINED) $(AM_LDFLAGS)
|
||||
|
||||
libevent_la_SOURCES = $(CORE_SRC) $(EXTRAS_SRC)
|
||||
libevent_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) -liphlpapi
|
||||
libevent_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) $(SYS_CORE_LIBS)
|
||||
libevent_la_LDFLAGS = $(GENERIC_LDFLAGS)
|
||||
|
||||
libevent_core_la_SOURCES = $(CORE_SRC)
|
||||
libevent_core_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) -liphlpapi
|
||||
libevent_core_la_LIBADD = @LTLIBOBJS@ $(SYS_LIBS) $(SYS_CORE_LIBS)
|
||||
libevent_core_la_LDFLAGS = $(GENERIC_LDFLAGS)
|
||||
|
||||
if PTHREADS
|
||||
|
Loading…
x
Reference in New Issue
Block a user