|
From: Ralph T. <ra...@us...> - 2005-04-13 12:30:42
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25872/adobe Modified Files: cmath.hpp config.hpp Log Message: ASL now compiles on FreeBSD, and probably on Linux. The eve_smoke and adam_tutorial tests compile (with warnings) and run fine using GCC 3.4.2. Index: config.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/config.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** config.hpp 12 Apr 2005 19:53:34 -0000 1.5 --- config.hpp 13 Apr 2005 12:30:27 -0000 1.6 *************** *** 54,57 **** --- 54,61 ---- #define ADOBE_PLATFORM_MAC 1 + #elif defined(__linux__) || defined(__unix) + + #define ADOBE_PLATFORM_UNIX 1 + #else Index: cmath.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/cmath.hpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cmath.hpp 12 Apr 2005 19:29:00 -0000 1.5 --- cmath.hpp 13 Apr 2005 12:30:27 -0000 1.6 *************** *** 34,38 **** } // namespace adobe ! #elif defined ADOBE_PLATFORM_WIN namespace adobe { --- 34,38 ---- } // namespace adobe ! #elif defined(ADOBE_PLATFORM_WIN) || defined(ADOBE_PLATFORM_UNIX) namespace adobe { |