From: Bertrand <bco...@us...> - 2017-02-25 15:50:05
|
Update of /cvsroot/jsbsim/JSBSim/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31261/src Modified Files: JSBSim.cpp Log Message: Mac build fix from James Turner Index: JSBSim.cpp =================================================================== RCS file: /cvsroot/jsbsim/JSBSim/src/JSBSim.cpp,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -r1.90 -r1.91 *** JSBSim.cpp 25 Feb 2017 14:23:18 -0000 1.90 --- JSBSim.cpp 25 Feb 2017 15:50:02 -0000 1.91 *************** *** 288,292 **** _controlfp(_controlfp(0, 0) & ~(_EM_INVALID | _EM_ZERODIVIDE | _EM_OVERFLOW), _MCW_EM); ! #elif defined(__GNUC__) && !defined(sgi) feenableexcept(FE_DIVBYZERO | FE_INVALID); #endif --- 288,292 ---- _controlfp(_controlfp(0, 0) & ~(_EM_INVALID | _EM_ZERODIVIDE | _EM_OVERFLOW), _MCW_EM); ! #elif defined(__GNUC__) && !defined(sgi) && !defined(__APPLE__) feenableexcept(FE_DIVBYZERO | FE_INVALID); #endif |