- Bart Whiteley provided a patch that made libcurl work properly when an app

uses the CURLOPT_OPENSOCKETFUNCTION callback to create a unix domain socket
  to a http server.
This commit is contained in:
Daniel Stenberg
2008-05-01 21:34:34 +00:00
parent 459c664043
commit 3d29bda9f8
4 changed files with 31 additions and 7 deletions

View File

@@ -1861,6 +1861,7 @@ AC_CHECK_HEADERS(
arpa/inet.h \
net/if.h \
netinet/in.h \
sys/un.h \
netinet/tcp.h \
netdb.h \
sys/sockio.h \
@@ -1907,6 +1908,9 @@ dnl default includes
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_SYS_UN_H
#include <sys/un.h>
#endif
]
)