[Ecls-list] error signaled by unicode version
Claus Brod
claus_brod at cocreate.com
Sun Aug 24 18:44:06 UTC 2008
> Unfortunately neither 'nmake ECL_UNICODE=1' nor enabling
> ECL_UNICODE=1 directly in Makefile makes unicode version for me.
>
I found the following in the Makefile:
!if "$(ECL_UNICODE)" != ""
!else
CFLAGS = $(CFLAGS) -DECL_UNICODE
!endif
Building a Unicode version (using "nmake ECL_UNICODE=1") worked for me
after changing this into
!if "$(ECL_UNICODE)" != ""
CFLAGS = $(CFLAGS) -DECL_UNICODE
!endif
Hope this helps,
Claus
More information about the ecl-devel
mailing list