|
From: Ralph T. <ra...@us...> - 2005-04-10 08:15:23
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30532/adobe-source/adobe/source Modified Files: istream.cpp Log Message: These are some of Tobias Schwinger's changes to make ASL (and visual) build with the MinGW GCC compiler on Windows. More information on the effort is in https://sourceforge.net/tracker/?func=detail&atid=724218&aid=1180074&group_id=132417 . cmath.hpp: use ADOBE_PLATFORM_WIN instead of BOOST_MSVC eve.hpp: reorder member variable definitions to avoid initialization warnings. future/assemblage.hpp: include boost/bind.hpp, because it is used later in the file. source/istream.cpp: reorder member variable initialization list to avoid warnings. test/eve_smoke/main.cpp: added a newline to the end of the file. test/visual/Jamfile: add correct link flags for MinGW toolset, only include resource file for MSVC build. I will commit more of Tobias changes once I've had the opportunity to test them (the changes which remain should always be in bug 1180074). Index: istream.cpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/source/istream.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** istream.cpp 19 Mar 2005 00:16:43 -0000 1.1 --- istream.cpp 10 Apr 2005 08:15:15 -0000 1.2 *************** *** 21,28 **** line_position_t::line_position_t(const char* stream_name, int line_number, std::streampos line_start, std::streampos position) : - stream_name_m(stream_name), line_number_m(line_number), line_start_m(line_start), ! position_m(position) { } --- 21,28 ---- line_position_t::line_position_t(const char* stream_name, int line_number, std::streampos line_start, std::streampos position) : line_number_m(line_number), line_start_m(line_start), ! position_m(position), ! stream_name_m(stream_name) { } |