]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Leave debug compiler flag as /Zi when converting back to CVS's VC6.0 dsp
authorWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 26 Sep 2001 14:28:46 +0000 (14:28 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Wed, 26 Sep 2001 14:28:46 +0000 (14:28 +0000)
  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

src/helpers/dsp5tocvs.pl

index 9686b43634b9f58ec29b8d824c60bd27b672fd1a..682ddba9206623e1a4d7b571bfce9912e01ec9d5 100644 (file)
@@ -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;