diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-12-06 19:28:21 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-12-06 19:28:21 +0000 |
commit | 8c8a4ace7996843229b7a1f2a007f1cea5c7a38d (patch) | |
tree | 45a4b2a6c9317c111f0ed49c371538baf87d63a7 /win32/config_h.PL | |
parent | e4a4387cd67b57d9dfcb057f769a33143eec0663 (diff) | |
download | perl-8c8a4ace7996843229b7a1f2a007f1cea5c7a38d.tar.gz |
Add useperlio to config.vc
Turn off binmode in config_H.PL
Regen all the config_H.xx
Attempt to get debugging build with MSVC.
p4raw-id: //depot/perlio@8019
Diffstat (limited to 'win32/config_h.PL')
-rw-r--r-- | win32/config_h.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/config_h.PL b/win32/config_h.PL index 91f35a4753..a0ee22d305 100644 --- a/win32/config_h.PL +++ b/win32/config_h.PL @@ -45,7 +45,7 @@ eval $str; die "$str:$@" if $@; open(H,">$file.new") || die "Cannot open $file.new:$!"; -binmode H; # no CRs (which cause a spurious rebuild) +#binmode H; # no CRs (which cause a spurious rebuild) while (<SH>) { last if /^$term$/o; |