Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-12-15 00:22:27 +0000
committereutarass2010-12-15 00:22:27 +0000
commitd160d7ba7af66ca60f13fc792ba554c052d8e621 (patch)
treef32153fcbcb05aca01c895304b0b9b944b50075c
parentebb5cdfdc2fc1e883c4d3192a46ac5e34f5378c5 (diff)
downloadorg.eclipse.tcf.agent-d160d7ba7af66ca60f13fc792ba554c052d8e621.tar.gz
org.eclipse.tcf.agent-d160d7ba7af66ca60f13fc792ba554c052d8e621.tar.xz
org.eclipse.tcf.agent-d160d7ba7af66ca60f13fc792ba554c052d8e621.zip
TCF Server: 2nd try: UNIX domain sockets support is enabled in the server
-rw-r--r--server/config.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/server/config.h b/server/config.h
index f3ab8371..026ffad4 100644
--- a/server/config.h
+++ b/server/config.h
@@ -89,7 +89,11 @@
#if !defined(ENABLE_Unix_Domain)
/* Using UNIX:/path/to/socket for local TCP communication */
-# define ENABLE_Unix_Domain (TARGET_UNIX || TARGET_SYMBIAN)
+# if defined(__linux__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__)
+# define ENABLE_Unix_Domain 1
+# else
+# define ENABLE_Unix_Domain 0
+# endif
#endif
#if !defined(ENABLE_STREAM_MACROS)

Back to the top