mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Made this module compatible with Python2.3, and added a temporary setup
script that allows it to be built for that Python.
This commit is contained in:
		
							parent
							
								
									1dde95dffa
								
							
						
					
					
						commit
						2af4ce8f30
					
				
					 3 changed files with 21 additions and 0 deletions
				
			
		
							
								
								
									
										13
									
								
								Mac/Modules/launch/setup.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Mac/Modules/launch/setup.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,13 @@ | |||
| # This is a temporary setup script to allow distribution of | ||||
| # MacPython 2.4 modules for MacPython 2.3. | ||||
| 
 | ||||
| from distutils.core import Extension, setup | ||||
| 
 | ||||
| setup(name="LaunchServices", version="0.1", | ||||
| 	ext_modules=[ | ||||
| 		Extension('_Launch', ['_Launchmodule.c'], | ||||
| 		extra_link_args=['-framework', 'ApplicationServices']) | ||||
| 	], | ||||
| 	py_modules=['LaunchServices.Launch', 'LaunchServices.LaunchServices'], | ||||
| 	package_dir={'LaunchServices':'../../../Lib/plat-mac/Carbon'} | ||||
| 	) | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Jack Jansen
						Jack Jansen