Change 27503 by [EMAIL PROTECTED] on 2006/03/15 12:34:10
Additions to README.win32 and win32/Makefile based on comments from
Steve Hay.
Affected files ...
... //depot/perl/README.win32#85 edit
... //depot/perl/win32/Makefile#294 edit
Differences ...
==== //depot/perl/README.win32#85 (text) ====
Index: perl/README.win32
--- perl/README.win32#84~25672~ 2005-09-30 08:52:30.000000000 -0700
+++ perl/README.win32 2006-03-15 04:34:10.000000000 -0800
@@ -54,6 +54,8 @@
"Borland C++ Builder" product. The Microsoft compiler is available as
"Visual C++ Toolkit 2003", and also as part of the ".NET Framework SDK", and
is the same compiler that ships with "Visual Studio .NET 2003 Professional".
+Currently, Perl cannot be compiled with Visual C++ 8.0, which is part of the
+.NET 2.0 Framework SDK and Visual Studio 2005.
This port can also be built on the Intel IA64 using:
==== //depot/perl/win32/Makefile#294 (text) ====
Index: perl/win32/Makefile
--- perl/win32/Makefile#293~27500~ 2006-03-15 03:06:34.000000000 -0800
+++ perl/win32/Makefile 2006-03-15 04:34:10.000000000 -0800
@@ -102,7 +102,7 @@
#CCTYPE = MSVC70
# Visual C++ Toolkit 2005 (free version of Visual C++ 8.x command-line tools)
#CCTYPE = MSVC80FREE
-# Visual C++ 8.x (aka Visual Studio .NET 2003) (full version)
+# Visual C++ 8.x (aka Visual Studio 2005) (full version)
#CCTYPE = MSVC80
#
@@ -500,9 +500,9 @@
MINIMOD = ..\lib\ExtUtils\Miniperl.pm
X2P = ..\x2p\a2p.exe
-# With .NET 1.1 and 2.0, setargs.obj is not available with the .NET SDK. It
-# only comes with Visual Studio 2003 and Visual Studio 2005.
-!IF "$(CCTYPE)" != "MSVC70FREE" && "$(CCTYPE)" != "MSVC80FREE"
+# With the .NET 2.0 SDK, setargs.obj is not available with the .NET SDK. It
+# only comes with Visual Studio 2005.
+!IF "$(CCTYPE)" != "MSVC80FREE"
GLOBEXEBUILD =
!ENDIF
End of Patch.