PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-25/SWIG/Examples/pike/enum/README

#
#! | 13 lines | 8 code | 5 blank | 0 comment | 0 complexity | 08327a63e35e5842226e10b661d178dc MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  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. tmp.ptr=ptr;
  6. but should be patched to read:
  7. tmp.ptr=(p_wchar0 *) ptr;
  8. This bug has been reported to the Pike developers.