import source from 1.3.40
[external/swig.git] / Examples / pike / enum / README
1 This example will not compile with Pike versions 7.4.20 unless you first
2 patch the Pike sources. The problem is for line 91 of Pike's "stralloc.h"
3 (usually installed as /usr/local/pike/7.4.10/include/pike/stralloc.h). That
4 line reads:
5
6     tmp.ptr=ptr;
7
8 but should be patched to read:
9
10     tmp.ptr=(p_wchar0 *) ptr;
11
12 This bug has been reported to the Pike developers.
13