BUILD: makefile: Enable getaddrinfo() on OS/X

Enable getaddrinfo() on OS/X.
This commit is contained in:
Brad Smith 2020-10-09 19:26:23 -04:00 committed by Willy Tarreau
parent 3fc0fe05fd
commit ad5afbafea
1 changed files with 2 additions and 1 deletions

View File

@ -382,7 +382,8 @@ endif
# Mac OS/X
ifeq ($(TARGET),osx)
set_target_defaults = $(call default_opts, \
USE_POLL USE_TPROXY USE_LIBCRYPT USE_THREAD USE_CPU_AFFINITY USE_KQUEUE)
USE_POLL USE_TPROXY USE_LIBCRYPT USE_THREAD USE_CPU_AFFINITY USE_KQUEUE \
USE_GETADDRINFO)
EXPORT_SYMBOL = -export_dynamic
endif