diff mbox series

PATCH: c++tools: fix compilation

Message ID CAAOQCfSSoVe+gmnco1uwJiE6=VFHboNXweEehqLsw763c5OwwA@mail.gmail.com
State New
Headers show
Series PATCH: c++tools: fix compilation | expand

Commit Message

Guillaume Gomez Oct. 20, 2022, 4:33 p.m. UTC
Hi,

This patch fixes the following compilation error:

../.././c++tools/server.cc: In function ‘void server(bool, int,
module_resolver*)’:
../.././c++tools/server.cc:756:69: error: ‘readers’ was not declared
in this scope; did you mean ‘read’?
  756 |               if (active < 0 && sock_fd >= 0 && FD_ISSET
(sock_fd, &readers))
      |
     ^~~~~~~

It was missing a preprocessor condition around this code to work as
the "readers" variable
is created only in a preprocessor condition.

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
diff mbox series

Patch

From 39279d8b37287c09708d910921ce5cfa5b87ac01 Mon Sep 17 00:00:00 2001
From: Guillaume Gomez <guillaume1.gomez@gmail.com>
Date: Thu, 20 Oct 2022 18:18:52 +0200
Subject: [PATCH] Add missing preprocessor condition to fix c++tools/server.cc
 file compilation

---
 c++tools/server.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/c++tools/server.cc b/c++tools/server.cc
index 00154a05925..693aec6820a 100644
--- a/c++tools/server.cc
+++ b/c++tools/server.cc
@@ -753,8 +753,10 @@  server (bool ipv6, int sock_fd, module_resolver *resolver)
 		      }
 		  }
 
+#if defined (HAVE_PSELECT) || defined (HAVE_SELECT)
 	      if (active < 0 && sock_fd >= 0 && FD_ISSET (sock_fd, &readers))
 		active = -1;
+#endif
 	    }
 
 	  if (active >= 0)
-- 
2.34.1