[pywin32-checkins] pywin32 Python and Extensions.dsw,1.16,1.17 setup_win32all.py,1.19,1.20
OLD project page for the Python extensions for Windows
                
                Brought to you by:
                
                    mhammond
                    
                
            
            
        
        
        
    | 
      
      
      From: Mark H. <mha...@us...> - 2004-06-12 13:40:41
      
     | 
| Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11940 Modified Files: Python and Extensions.dsw setup_win32all.py Log Message: New win32inet and win32inetcon modules - extensions to the wininet "Internet" APIs. Index: Python and Extensions.dsw =================================================================== RCS file: /cvsroot/pywin32/pywin32/Python and Extensions.dsw,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Python and Extensions.dsw 10 Apr 2004 05:19:56 -0000 1.16 --- Python and Extensions.dsw 12 Jun 2004 13:40:33 -0000 1.17 *************** *** 841,844 **** --- 841,856 ---- ############################################################################### + Project: "win32inet"=.\win32\win32inet.dsp - Package Owner=<4> + + Package=<5> + {{{ + }}} + + Package=<4> + {{{ + }}} + + ############################################################################### + Global: Index: setup_win32all.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup_win32all.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** setup_win32all.py 6 May 2004 03:41:27 -0000 1.19 --- setup_win32all.py 12 Jun 2004 13:40:33 -0000 1.20 *************** *** 294,298 **** % (ext.windows_h_version, self.windows_h_version) ! common_dirs = self.compiler.library_dirs common_dirs += os.environ.get("LIB").split(os.pathsep) patched_libs = [] --- 294,298 ---- % (ext.windows_h_version, self.windows_h_version) ! common_dirs = self.compiler.library_dirs[:] common_dirs += os.environ.get("LIB").split(os.pathsep) patched_libs = [] *************** *** 720,723 **** --- 720,724 ---- ("win32trace", "advapi32", False), ("win32wnet", "netapi32 mpr", False), + ("win32inet", "wininet", False), ): |