From: cherierm Date: Fri, 6 Oct 2006 12:44:28 +0000 (+0000) Subject: Specific to borland builder configuration. X-Git-Tag: v3.3~2493 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8a6012ed0a3d3bb62a3177e326f237dbd915a09e Specific to borland builder configuration. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2866 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/win32/compiler/borland.h b/src/win32/compiler/borland.h index 4b4d140525..7a0d2bbb4a 100644 --- a/src/win32/compiler/borland.h +++ b/src/win32/compiler/borland.h @@ -12,7 +12,7 @@ * Borland C++ compiler configuration */ -#include +#include /* * include files. @@ -200,9 +200,16 @@ #endif /* "disable the snprintf replacement ( this function is broken on system v only" */ + +/* FIXEME TO ANALYZE #if defined(PREFER_PORTABLE_SNPRINTF) #undef PREFER_PORTABLE_SNPRINTF #endif +*/ + +#if !defined(PREFER_PORTABLE_SNPRINTF) + #define PREFER_PORTABLE_SNPRINTF +#endif /* The maximal size of any scalar on this arch */ #if !defined(SIZEOF_MAX) @@ -336,6 +343,10 @@ the double. For now, GRAS requires the structures to be compacted. */ #define va_copy(d, s) __VA_COPY_USE(d, s) #endif +#ifdef USE_UCONTEXT +#undef USE_UCONTEXT +#endif + /* Define to id of used va_copy() implementation */ #define __VA_COPY_USE __VA_COPY_USE_C99 @@ -406,5 +417,9 @@ the double. For now, GRAS requires the structures to be compacted. */ typedef unsigned int uint32_t; typedef int socklen_t; +/* Choose setjmp as exception implementation */ +#ifndef __EX_MCTX_SJLJ__ +#define __EX_MCTX_SJLJ__ +#endif #endif /* #ifndef __XBT_BORLAND_COMPILER_CONFIG_H__ */ \ No newline at end of file