]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Patch from Perry Stoll: tweaks to Windows support.
authorGreg Ward <gward@python.net>
Sun, 29 Aug 1999 18:22:13 +0000 (18:22 +0000)
committerGreg Ward <gward@python.net>
Sun, 29 Aug 1999 18:22:13 +0000 (18:22 +0000)
Lib/distutils/sysconfig.py

index 5c60ca4a491916ba5f73f1e90cbe1bc9ff433c60..8eaf17dc356400cc25327f1a8dda048ca93569b0 100644 (file)
@@ -137,8 +137,13 @@ def _init_nt():
             os.path.join(sys.exec_prefix, "include", "config.h")), g)
     # set basic install directories
     g['LIBDEST']=os.path.join(sys.exec_prefix, "Lib")
-    g['BINLIBDEST']=os.path.join(sys.exec_prefix, "Lib")
+    g['BINLIBDEST']= os.path.join(sys.exec_prefix, "Lib")
 
+    # XXX hmmm.. a normal install puts include files here
+    g['INCLUDEPY'] = os.path.join (sys.prefix, 'include' )
+
+    g['SO'] = '.dll'
+    g['exec_prefix'] = sys.exec_prefix
 
 try:
     exec "_init_" + os.name