git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10423 626c5289-ae23-0410-ae9c-e8d60b6d4f22
42 lines
1.7 KiB
Text
42 lines
1.7 KiB
Text
Version 1.3.36 (in progress)
|
|
=============================
|
|
|
|
05/07/2008: wsfulton
|
|
Fix wrapping of overloaded protected methods when using allprotected mode.
|
|
Bug reported by Warren Wang.
|
|
|
|
05/03/2008: wsfulton
|
|
Commit patch #1956607 to add -MT support from Richard Boulton.
|
|
This patch mirrors the gcc -MT option which allows one to change the default
|
|
Makefile target being generated when generating makefiles with the -M family
|
|
of options. For example:
|
|
|
|
$ swig -java -MM -MT overiddenname -c++ example.i
|
|
overiddenname: \
|
|
example.i \
|
|
example.h
|
|
|
|
04/30/2008: mgossage
|
|
[Lua] Removed generation of _wrap_delete_XXXXX (wrappered destructor)
|
|
which was unused and causing warning with g++ -Wall.
|
|
Removed other unused warning in typemaps.i and other places.
|
|
Added Examples/lua/embed3, and run tests a few test cases.
|
|
|
|
04/24/2008: olly
|
|
[Python] Fix generated code for IBM's C++ compiler on AIX (patch
|
|
from Goeran Uddeborg in SF#1928048).
|
|
|
|
04/24/2008: olly
|
|
Rename BSIZE in Examples/test-suite/arrays_scope.i to BBSIZE to
|
|
avoid a clash with BSIZE defined by headers on AIX with Perl
|
|
(reported in SF#1928048).
|
|
|
|
04/20/2008: wsfulton
|
|
Add the ability to wrap all protected members when using directors.
|
|
Previously only the virtual methods were available to the target language.
|
|
Now all protected members, (static and non-static variables, non-virtual methods
|
|
and static methods) are wrapped when using the allprotected mode. The allprotected
|
|
mode is turned on in the module declaration:
|
|
|
|
%module(directors="1", allprotected="1") modulename
|
|
|