From: Lars Ingebrigtsen Date: Mon, 1 Feb 2016 00:19:42 +0000 (+0100) Subject: Windows build fix X-Git-Tag: emacs-26.0.90~2520^2~45 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=56cd5301f1ec70958fa0c2e51ce58c674e800a50;p=emacs.git Windows build fix * process.c (Fmake_network_process): Build fix for systems without local sockets. --- 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