1Name: Simplified Wrapper and Interface Generator (SWIG) 2Short Name: swig 3URL: http://www.swig.org/download.html 4Version: 1.3.40 5License: MIT 6Security Critical: no 7 8Description: 9Simplified Wrapper and Interface Generator (SWIG) is an interface compiler 10that connects programs written in C and C++ with scripting languages such as 11Perl, Python, Ruby, and Tcl. It works by taking the declarations found in 12C/C++ header files and using them to generate the wrapper code that scripting 13languages need to access the underlying C/C++ code. 14 15Local Modifications: 16- Removed all non-python bindings from Lib/. 17- Edit Lib/python/pyruntime.swg to include Python.h without the _DEBUG macro to 18 avoid requiring python<ver>_d.lib since we do not intend to debug python. Also 19 disable a MSVC warning about mixing headers with and without _DEBUG. 20- Edit Lib/python/pyruntime.swg to include <Python/Python.h> rather than 21 <Python.h> on the Mac. 22 http://crbug.com/305277 https://sourceforge.net/p/swig/bugs/1346/ 23