Re: Couple of fixes

Lars Ivar Igesund <[email protected]> Sun, 23 Jan 2005 15:14:51 +0100
Newsgroups gmane.comp.tools.aap.devel
Message-ID <[email protected]>
Hmm, seems like I was a bit quick on the trigger as there has been a 
regression between 1.072 and 1.073. The reason was some changes in 
msvc.py (rectified by the attached patch).

Lars Ivar Igesund

Bram Moolenaar wrote:
> Lars Ivar Igesund wrote:
> 
> 
>>I've attached two patches. The first removes the ":assertpkg ddepcheck". 
>>I don't see the point as long as the source is included in the A-A-P 
>>distribution. In addition it is impractical for me to update boot.aap 
>>for ddepcheck. I've also made some minor 'fixes' to the ddepcheck 
>>installation routine. The second is a linux compile fix for ddepcheck.
> 
> 
> Thanks.  I'll include the patches and upload version 1.074.
>
msvc.diff (text/plain, 839 B)
Index: msvc.py
===================================================================
RCS file: /cvsroot/a-a-p/Exec/tools/msvc.py,v
retrieving revision 1.10
diff -u -r1.10 msvc.py
--- msvc.py	23 Oct 2004 11:39:46 -0000	1.10
+++ msvc.py	23 Jan 2005 14:03:11 -0000
@@ -91,8 +91,10 @@
     scope["CXX_COMPILE_ACTION"] = "compile_msvc"
     scope["C_BUILD_ACTION"] = "build_msvc"
     scope["CXX_BUILD_ACTION"] = "build_msvc"
-    scope["BUILDLIB_ACTION"] = "build_msvc_lib"
-    scope["BUILDDLL_ACTION"] = "build_msvc_dll"
+    scope["C_BUILDLIB_ACTION"] = "build_msvc_lib"
+    scope["C_BUILDDLL_ACTION"] = "build_msvc_dll"
+    scope["CXX_BUILDLIB_ACTION"] = "build_msvc_lib"
+    scope["CXX_BUILDDLL_ACTION"] = "build_msvc_dll"
 
     # Avoid using gcc for dependency checks.  It may exist but won't work with
     # the MSVC compiler flags.