Checked in patch for bug 185145: libical does not build under cygwin perl in textmode

This commit is contained in:
mostafah%oeone.com 2002-12-16 14:54:31 +00:00
parent 91a22d4fd5
commit 23adef2baa

View File

@ -9,7 +9,8 @@ sub read_values_file {
while(<F>){
chop;
chomp;
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
s/#.*$//g;
s/\"//g;
@ -65,7 +66,8 @@ sub read_properties_file {
while(<F>){
chop;
chomp;
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
s/#.*$//g;
s/\"//g;
@ -96,7 +98,8 @@ sub read_parameters_file {
while(<F>){
chop;
chomp;
chop if($^O eq 'cygwin'); # cygwin perl doesn't chomp dos newlines properly so use chomp
s/#.*$//g;
s/\"//g;