diff options
Diffstat (limited to 'Examples/pike/enum/README')
| -rw-r--r-- | Examples/pike/enum/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Examples/pike/enum/README b/Examples/pike/enum/README new file mode 100644 index 0000000..055aa9f --- /dev/null +++ b/Examples/pike/enum/README @@ -0,0 +1,13 @@ +This example will not compile with Pike versions 7.4.20 unless you first +patch the Pike sources. The problem is for line 91 of Pike's "stralloc.h" +(usually installed as /usr/local/pike/7.4.10/include/pike/stralloc.h). That +line reads: + + tmp.ptr=ptr; + +but should be patched to read: + + tmp.ptr=(p_wchar0 *) ptr; + +This bug has been reported to the Pike developers. + |
