Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-05-13 01:38:14 +0000
committereutarass2010-05-13 01:38:14 +0000
commit3897de73f1382a05ce42ba824de23bd285586827 (patch)
treea52a7d13c758ef218d4f9daae72838326cbc06c3
parentcf3f0cc8c838664d4bc5bdd07c3425a163ce2d21 (diff)
downloadorg.eclipse.tcf.agent-3897de73f1382a05ce42ba824de23bd285586827.tar.gz
org.eclipse.tcf.agent-3897de73f1382a05ce42ba824de23bd285586827.tar.xz
org.eclipse.tcf.agent-3897de73f1382a05ce42ba824de23bd285586827.zip
TCF Agent: fixed: compilation errors when building mdep.c with INET asserted on VxWorks
-rw-r--r--framework/mdep.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/mdep.h b/framework/mdep.h
index 2178d348..5b26704d 100644
--- a/framework/mdep.h
+++ b/framework/mdep.h
@@ -287,7 +287,9 @@ extern char * canonicalize_file_name(const char * path);
#elif defined(_WRS_KERNEL)
/* VxWork kernel module */
-#define INET
+#if !defined(INET)
+# define INET
+#endif
#include <vxWorks.h>
#include <inetLib.h>

Back to the top