|
From: Tobias S. <t_s...@us...> - 2005-04-15 20:42:32
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2059/adobe-source/adobe/test/visual Modified Files: Jamfile Log Message: Adds Win32/GCC specific fixes (there is no Jam-toolset named 'mingw', definition of _WIN32_IE is required). Index: Jamfile =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/Jamfile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Jamfile 10 Apr 2005 08:15:16 -0000 1.8 --- Jamfile 15 Apr 2005 20:42:23 -0000 1.9 *************** *** 23,27 **** # such as the WS_EX_COMPOSITED window style. # ! PLATFORM_DEFINITIONS = <define>WINVER=0x501 <define>_WIN32_WINNT=0x501 ; } else { PLATFORM_HEADERS = headers/mac ; --- 23,27 ---- # such as the WS_EX_COMPOSITED window style. # ! PLATFORM_DEFINITIONS = <define>WINVER=0x501 <define>_WIN32_WINNT=0x501 <define>_WIN32_IE=0x0501 ; } else { PLATFORM_HEADERS = headers/mac ; *************** *** 33,37 **** project adobe/visual : requirements <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib /subsystem:windows" ! : requirements <toolset>mingw:<linkflags>"-lgdi32 -luser32 -lcomctl32" : requirements <toolset>darwin:<linkflags>"-framework Carbon" # --- 33,37 ---- project adobe/visual : requirements <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib /subsystem:windows" ! : requirements <toolset>gcc:<linkflags>"-lgdi32 -luser32 -lcomctl32" : requirements <toolset>darwin:<linkflags>"-framework Carbon" # |