diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-29 12:40:03 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-29 12:40:03 +0000 |
commit | f3ee62dd045665d69979ecdae282e2285af75e52 (patch) | |
tree | 90191841d36139bdff5f18070222bef897039185 | |
parent | 2edd7e4402b46befc69c68043eda73146c6036b0 (diff) | |
download | perl-f3ee62dd045665d69979ecdae282e2285af75e52.tar.gz |
Make as-shipped compiler default to MSVC6
p4raw-id: //depot/perlio@9432
-rw-r--r-- | win32/makefile.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 1ac7267d4a..03166a8b80 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -99,9 +99,9 @@ USE_PERLIO = define # Visual C++ > 2.x and < 6.x #CCTYPE *= MSVC # Visual C++ >= 6.x -#CCTYPE *= MSVC60 +CCTYPE *= MSVC60 # Borland 5.02 or later -CCTYPE *= BORLAND +#CCTYPE *= BORLAND # mingw32+gcc-2.95.2 or better #CCTYPE *= GCC @@ -174,8 +174,8 @@ CFG *= Debug # so you may have to set CCHOME explicitly (spaces in the path name should # not be quoted) # -CCHOME *= F:\borland\bc5 -#CCHOME *= $(MSVCDIR) +#CCHOME *= F:\borland\bc5 +CCHOME *= $(MSVCDIR) #CCHOME *= c:\gcc-2.95.2 CCINCDIR *= $(CCHOME)\include CCLIBDIR *= $(CCHOME)\lib |