Commit fa8992fc authored by Avuton Olrich's avatar Avuton Olrich

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

parent 8d631b34
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment