From 76d23e639004517db8f9469d64ac1789f8449365 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 7 Jan 2010 13:50:11 +0200 Subject: Add support for ISO-8859-1 as application encoding New runtime configuration parameter, XSDE_ENCODING. New option, --char-encoding. New test, tests/cxx/hybrid/iso8859-1. --- dist/libxsde/xsde/makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'dist/libxsde/xsde/makefile') diff --git a/dist/libxsde/xsde/makefile b/dist/libxsde/xsde/makefile index 9abff7a..60c5ba3 100644 --- a/dist/libxsde/xsde/makefile +++ b/dist/libxsde/xsde/makefile @@ -11,6 +11,10 @@ src += c/genx/genx.c c/genx/char-props.c src += cxx/string.cxx cxx/ro-string.cxx cxx/stack.cxx +ifeq ($(XSDE_ENCODING),iso8859-1) +src += cxx/iso8859-1.cxx +endif + ifeq ($(XSDE_STL),n) src += cxx/strdupx.cxx endif @@ -506,6 +510,20 @@ endif ifeq ($(XSDE_BYTEORDER),b) @echo $(h)define XSDE_BYTEORDER 4321 >>$@ endif +ifeq ($(XSDE_ENCODING),utf8) + @echo $(h)define XSDE_ENCODING_UTF8 >>$@ +else +ifeq ($(XSDE_ENCODING),) + @echo $(h)define XSDE_ENCODING_UTF8 >>$@ +else + @echo $(h)undef XSDE_ENCODING_UTF8 >>$@ +endif +endif +ifeq ($(XSDE_ENCODING),iso8859-1) + @echo $(h)define XSDE_ENCODING_ISO8859_1 >>$@ +else + @echo $(h)undef XSDE_ENCODING_ISO8859_1 >>$@ +endif ifeq ($(XSDE_STL),y) @echo $(h)define XSDE_STL >>$@ endif -- cgit v1.1