diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-07-28 08:38:59 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-07-28 08:38:59 +0000 |
commit | 2ff39b848160c904dcbf5326912f8242e084b90a (patch) | |
tree | 62eed67b9818e47d71254b56311c2d1af203d19d /common/fltk/src/xutf8/README | |
parent | 4e326a0b8cf816b3205171e0bbce5d6d4973d90e (diff) | |
download | tigervnc-2ff39b848160c904dcbf5326912f8242e084b90a.tar.gz tigervnc-2ff39b848160c904dcbf5326912f8242e084b90a.zip |
Include a stripped-down version of FLTK in tree and add a USE_INCLUDED_FLTK option to build against it.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4603 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/fltk/src/xutf8/README')
-rw-r--r-- | common/fltk/src/xutf8/README | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/common/fltk/src/xutf8/README b/common/fltk/src/xutf8/README new file mode 100644 index 00000000..cc9c51d9 --- /dev/null +++ b/common/fltk/src/xutf8/README @@ -0,0 +1,67 @@ + + + +supported encodings : +--------------------- +iso10646-1 +iso8859-1 +iso8859-2 +iso8859-3 +iso8859-4 +iso8859-5 +iso8859-6 +iso8859-7 +iso8859-8 +iso8859-9 +iso8859-10 +iso8859-11 +iso8859-13 +iso8859-14 +iso8859-15 +koi8-r +koi8-u +big5-0 +gbk +gb2312.1980-0 +jisx0201.1976-0 +jisx0208.1983-0 +jisx0212.1990-0 +ksc5601.1987-0 +symbol +dingbats + + +TIPS: +===== + +You must add "-lXutf8" to the library list in your Makefile. + +When using "GNU autoconf" add these lines to your "configure.in" : + +dnl Test to see if libXutf8 is on this machine: +XUTFLIB= +AC_CHECK_LIB(Xutf8, XUtf8IsNonSpacing, \ + AC_DEFINE(HAVE_XUTF8) XUTFLIB=" -lXutf8", ,\ + -lX11 $X_EXTRA_LIBS) +AC_SUBST(XUTFLIB) + + +ORIGINAL FILES : +================ + +The directory lcUniConv is copied from the xfree project cvs system. +( +export CVS_RSH=ssh +export CVSROOT=anoncvs@anoncvs.xfree86.org:/cvs +cvs checkout xc/lib/X11/lcUniConv +password: anoncvs +) + +The file imKStoUCS.c is copied from the xfree project cvs system. +( +export CVS_RSH=ssh +export CVSROOT=anoncvs@anoncvs.xfree86.org:/cvs +cvs checkout xc/lib/X11 +password: anoncvs +) + |