Module: wine Branch: master Commit: 0656691706dc5d85ed643c949d87aa9b70867eb6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0656691706dc5d85ed643c949d...
Author: Austin English austinenglish@gmail.com Date: Sat Mar 28 00:13:09 2009 -0500
configure: inet_ntop and inet_pton depend on -lsocket on Solaris.
---
configure | 8 ++++---- configure.ac | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/configure b/configure index 668adbc..eb66b54 100755 --- a/configure +++ b/configure @@ -17950,8 +17950,6 @@ CFLAGS="$CFLAGS $BUILTINFLAG"
- - for ac_func in \ _pclose \ _popen \ @@ -17983,8 +17981,6 @@ for ac_func in \ gettid \ gettimeofday \ getuid \ - inet_ntop \ - inet_pton \ kqueue \ lstat \ memmove \ @@ -18656,6 +18652,8 @@ fi
+ + for ac_func in \ getaddrinfo \ getnameinfo \ @@ -18664,6 +18662,8 @@ for ac_func in \ getprotobynumber \ getservbyport \ inet_network \ + inet_ntop \ + inet_pton \ sendmsg \ socketpair \
diff --git a/configure.ac b/configure.ac index c13abc4..9c90bff 100644 --- a/configure.ac +++ b/configure.ac @@ -1456,8 +1456,6 @@ AC_CHECK_FUNCS(\ gettid \ gettimeofday \ getuid \ - inet_ntop \ - inet_pton \ kqueue \ lstat \ memmove \ @@ -1530,6 +1528,8 @@ AC_CHECK_FUNCS(\ getprotobynumber \ getservbyport \ inet_network \ + inet_ntop \ + inet_pton \ sendmsg \ socketpair \ )