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