From a27375bf26a44cc15f7a048b5ab872747761a022 Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 13 Mar 2007 10:22:44 +0000 Subject: [PATCH] Reintroduce the changes to the windows build chain to allow gcc cross compilation (was removed by Malek's last compile) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3246 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/win32/config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/win32/config.h b/src/win32/config.h index d5b937b2ce..4ba03b559b 100644 --- a/src/win32/config.h +++ b/src/win32/config.h @@ -17,6 +17,9 @@ #if defined(_XBT_BORLAND_COMPILER) # include +#elif defined(__GNUC__) + /* data comes from autoconf when using gnuc (cross-compiling?) */ +# include "gras_config.h" #elif defined(_XBT_VISUALC_COMPILER) # include # else @@ -74,6 +77,6 @@ const char *gras_wsa_err2string(int errcode); #define S_IWGRP 0 - + #endif /* #ifndef __XBT_WIN32_CONFIG_H__ */ -- 2.20.1