Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23840/adobe-source/adobe/test/visual
Modified Files:
Jamfile
Log Message:
Makes sure the Darwin linker does not accidently sees Windows libraries and adds a comment to revisit this issue
Index: Jamfile
===================================================================
RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/test/visual/Jamfile,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Jamfile 15 Apr 2005 20:42:23 -0000 1.9
--- Jamfile 15 Apr 2005 22:28:10 -0000 1.10
***************
*** 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"
#
--- 33,43 ----
project adobe/visual
: requirements <toolset>msvc:<linkflags>"gdi32.lib user32.lib comctl32.lib /subsystem:windows"
! #
! # REVISIT (t_schwinger):
! #
! # Masking darwin by requesting the GNU linker is odd. This has to be straightened out
! # as soon as there are more GCC platforms...
! #
! : requirements <toolset>gcc:<linker>gnu:<linkflags>"-lgdi32 -luser32 -lcomctl32"
: requirements <toolset>darwin:<linkflags>"-framework Carbon"
#
|