From 41f7038a3e685a05b648b1d920bfb0bbcba5e632 Mon Sep 17 00:00:00 2001
From: Thomas Heller <theller@ctypes.org>
Date: Wed, 10 Nov 2004 09:01:41 +0000
Subject: Avoid a linker warning: MSVC 7 doesn't support /pdb:None, the debug
 info will always be in a .pdb file.

---
 Lib/distutils/msvccompiler.py | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index 168881a..ab92801 100644
--- a/Lib/distutils/msvccompiler.py
+++ b/Lib/distutils/msvccompiler.py
@@ -237,9 +237,14 @@ class MSVCCompiler (CCompiler) :
                                       '/Z7', '/D_DEBUG']
 
         self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
-        self.ldflags_shared_debug = [
-            '/DLL', '/nologo', '/INCREMENTAL:no', '/pdb:None', '/DEBUG'
-            ]
+        if self.__version >= 7:
+            self.ldflags_shared_debug = [
+                '/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG'
+                ]
+        else:
+            self.ldflags_shared_debug = [
+                '/DLL', '/nologo', '/INCREMENTAL:no', '/pdb:None', '/DEBUG'
+                ]
         self.ldflags_static = [ '/nologo']
 
 
-- 
cgit v0.12