From 28dcb2eaa504102f0b88b4905efe1ff64df4bbaf Mon Sep 17 00:00:00 2001 From: Fons Rademakers <Fons.Rademakers@cern.ch> Date: Fri, 11 Mar 2005 18:36:04 +0000 Subject: [PATCH] added case for Fujitsu compiler on Solaris based Fujitsu mainframe. Provided by Fujitsu when porting the ROOT based SPEC suite. git-svn-id: http://root.cern.ch/svn/root/trunk@11308 27541ba8-7e3a-0410-8455-c3a389f83636 --- base/inc/RConfig.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/base/inc/RConfig.h b/base/inc/RConfig.h index 9a78b495baf..588c3e3d460 100644 --- a/base/inc/RConfig.h +++ b/base/inc/RConfig.h @@ -1,4 +1,4 @@ -/* @(#)root/base:$Name: $:$Id: RConfig.h,v 1.77 2004/10/29 16:07:32 rdm Exp $ */ +/* @(#)root/base:$Name: $:$Id: RConfig.h,v 1.78 2005/02/28 17:28:11 rdm Exp $ */ /************************************************************************* * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers. * @@ -104,7 +104,7 @@ # endif #endif -#if defined(__sun) && !defined(linux) +#if defined(__sun) && !(defined(linux) || defined(__FCC_VERSION)) # ifdef __SVR4 # define R__SOLARIS # define R__SEEK64 @@ -133,6 +133,16 @@ # endif #endif +#if defined(__FCC_VERSION) /* Solaris with Fujitsu compiler */ +# define R__SOLARIS +# define R__SEEK64 +# define ANSICPP +# define R__UNIX +# define NEED_STRING +# define NEED_SIGJMP +# define R__ANSISTREAM /* ANSI C++ Standard Library conformant */ +#endif + #if defined(__sgi) && !defined(linux) # define R__SGI # define R__UNIX -- GitLab