From 56cd5301f1ec70958fa0c2e51ce58c674e800a50 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 1 Feb 2016 01:19:42 +0100 Subject: [PATCH] Windows build fix * process.c (Fmake_network_process): Build fix for systems without local sockets. --- src/process.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/process.c b/src/process.c index b91e1c97a97..6b76559f309 100644 --- a/src/process.c +++ b/src/process.c @@ -3587,7 +3587,9 @@ usage: (make-network-process &rest ARGS) */) { /* The "connection" function gets it bind info from the address we're given, so use this dummy address if nothing is specified. */ +#ifdef HAVE_LOCAL_SOCKETS if (family != AF_LOCAL) +#endif host = build_string ("127.0.0.1"); } else -- 2.39.5