https://git.reactos.org/?p=reactos.git;a=commitdiff;h=44ae567e396c8b6c68ae9…
commit 44ae567e396c8b6c68ae90bc5c30b76c3fd83772
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sat Aug 15 21:42:05 2020 +0200
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Sun Aug 23 12:07:38 2020 +0200
[TELNET] Don't build this for clang due to compiler errors. CORE-17202
---
base/applications/network/CMakeLists.txt | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/base/applications/network/CMakeLists.txt
b/base/applications/network/CMakeLists.txt
index 4f95614999e..46246108408 100644
--- a/base/applications/network/CMakeLists.txt
+++ b/base/applications/network/CMakeLists.txt
@@ -10,7 +10,9 @@ add_subdirectory(netstat)
add_subdirectory(nslookup)
add_subdirectory(ping)
add_subdirectory(route)
-add_subdirectory(telnet)
+if(NOT USE_CLANG_CL)
+ add_subdirectory(telnet)
+endif()
add_subdirectory(tracert)
add_subdirectory(whois)
add_subdirectory(wlanconf)