1
1

Fix Tru64 socklen_t compile issue with example/direct_tcpip.c

Building libssh2-1.2.3 on Tru64 fails at line 48 and 166 because socklen_t
isn't defined on Tru64 unless _POSIX_PII_SOCKET is defined.

This patch updates configure.ac to add -D_POSIX_PII_SOCKET when building
on Tru64 platform(s).
Этот коммит содержится в:
Dave McCaldon 2010-02-05 15:56:13 -05:00 коммит произвёл Peter Stuge
родитель ea914c8b72
Коммит 10f5c70ac0

Просмотреть файл

@ -41,6 +41,9 @@ case "$host" in
;;
*hpux*)
;;
*osf*)
CFLAGS="$CFLAGS -D_POSIX_PII_SOCKET"
;;
*)
;;
esac