mirror of
https://github.com/haproxy/haproxy.git
synced 2026-06-14 20:10:32 -04:00
BUG/MINOR: haproxy/cli : fix for solaris/illumos distros for CMSG* macros
control message sockets macros implies (SUS)XPG4V2 enabled under solaris based oses.
This commit is contained in:
parent
bbc165447e
commit
04919d53c5
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -286,7 +286,7 @@ ifeq ($(TARGET),solaris)
|
|||
# This is for Solaris 8
|
||||
# We also enable getaddrinfo() which works since solaris 8.
|
||||
USE_POLL = implicit
|
||||
TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT
|
||||
TARGET_CFLAGS = -fomit-frame-pointer -DFD_SETSIZE=65536 -D_REENTRANT -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
|
||||
TARGET_LDFLAGS = -lnsl -lsocket
|
||||
USE_TPROXY = implicit
|
||||
USE_LIBCRYPT = implicit
|
||||
|
|
|
|||
Loading…
Reference in a new issue