Commit 54f79a0f authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Early return from auth_socket system checks on Windows

No need to run through all system checks, we already know
it is not possible to authenticate with AF_UNIX socket.
parent 8ada1440
......@@ -14,6 +14,10 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA
IF(WIN32)
RETURN()
ENDIF()
CHECK_CXX_SOURCE_COMPILES(
"#define _GNU_SOURCE
#include <sys/socket.h>
......
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