From: William A. Rowe Jr Date: Wed, 26 Sep 2001 14:28:46 +0000 (+0000) Subject: Leave debug compiler flag as /Zi when converting back to CVS's VC6.0 dsp X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6eacab65691f740526b14f5af51d0c153b9c34a1;p=thirdparty%2Fapache%2Fhttpd.git Leave debug compiler flag as /Zi when converting back to CVS's VC6.0 dsp format, so the module remains compatible 'out of the box' to VC5.0 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91148 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/helpers/dsp5tocvs.pl b/src/helpers/dsp5tocvs.pl index 9686b43634b..682ddba9206 100644 --- a/src/helpers/dsp5tocvs.pl +++ b/src/helpers/dsp5tocvs.pl @@ -16,12 +16,6 @@ sub tovc6 { if ($src =~ s|Format Version 5\.00|Format Version 6\.00|) { $verchg = -1; } - if ($src =~ s|^(# ADD CPP .*)/Zi (.*)|$1/ZI $2|) { - $verchg = -1; - } - if ($src =~ s|^(# ADD BASE CPP .*)/Zi (.*)|$1/ZI $2|) { - $verchg = -1; - } if ($src =~ s|^(!MESSAGE .*)\\\n|$1|) { $cont = <$srcfl>; $src = $src . $cont;