configure.ac: Don't allow UNIX IPC to be configured for a native Windows build.

This commit is contained in:
Avuton Olrich 2010-04-13 18:55:00 -07:00
parent 8d631b346a
commit fa8992fc63

View File

@ -195,6 +195,12 @@ AC_ARG_ENABLE(un,
[disable support for clients connecting via unix domain sockets (default: enable)]),,
[enable_un=yes])
case "$host_os" in
mingw* | windows*)
enable_un=no
;;
esac
if test x$enable_un = xyes; then
AC_DEFINE(HAVE_UN, 1, [Define if unix domain socket support is enabled])
STRUCT_UCRED