Index: src/include/platform.h =================================================================== --- src/include/platform.h (revision 11817) +++ src/include/platform.h (working copy) @@ -93,6 +93,11 @@ #include #else #include "winproc.h" +typedef unsigned int sa_family_t; +struct sockaddr_un { + short sun_family; /*AF_UNIX*/ + char sun_path[108]; /*path name */ +}; #endif #endif Index: configure.ac =================================================================== --- configure.ac (revision 11817) +++ configure.ac (working copy) @@ -485,6 +485,8 @@ AM_PATH_PYTHON([2.5],, [:]) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :]) +AM_CONDITIONAL(HAVE_PYTHON_PEXPECT, 0) + if test "$PYTHON" != : then AC_MSG_CHECKING([for pexpect])