提交 6bc74b43 编写于 作者: 一个手艺人's avatar 一个手艺人 提交者: antirez

Use resolv library in Solaris

For some Solaris flavours, the inet_aton in in resolv library.
Not linking this library will introduce link error.

Improves compatability with older Solaris and still
works on new Solaris.

Closes #1092
上级 1aff711d
...@@ -58,7 +58,7 @@ ifeq ($(uname_S),SunOS) ...@@ -58,7 +58,7 @@ ifeq ($(uname_S),SunOS)
# SunOS # SunOS
INSTALL=cp -pf INSTALL=cp -pf
FINAL_CFLAGS+= -D__EXTENSIONS__ -D_XPG6 FINAL_CFLAGS+= -D__EXTENSIONS__ -D_XPG6
FINAL_LIBS+= -ldl -lnsl -lsocket -lpthread FINAL_LIBS+= -ldl -lnsl -lsocket -lresolv -lpthread
else else
ifeq ($(uname_S),Darwin) ifeq ($(uname_S),Darwin)
# Darwin (nothing to do) # Darwin (nothing to do)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册