1xtrans - X Network Transport layer shared code 2---------------------------------------------- 3 4xtrans is a library of code that is shared among various X packages to 5handle network protocol transport in a modular fashion, allowing a 6single place to add new transport types. It is used by the X server, 7libX11, libICE, the X font server, and related components. 8 9It is however, *NOT* a shared library, but code which each consumer 10includes and builds it's own copy of with various #ifdef flags to make 11each copy slightly different. To support this in the modular build 12system, this package simply installs the C source files into 13$(prefix)/include/X11/Xtrans and installs a pkg-config file and an 14autoconf m4 macro file with the flags needed to use it. 15 16Documentation of the xtrans API can be found in the included xtrans.xml 17file in DocBook XML format. If 'xmlto' is installed, you can generate text, 18html, postscript or pdf versions of the documentation by configuring 19the build with --enable-docs, which is the default. 20 21 -------------------------------------------------------------------------- 22 23All questions regarding this software should be directed at the 24Xorg mailing list: 25 26 https://lists.x.org/mailman/listinfo/xorg 27 28The primary development code repository can be found at: 29 30 https://gitlab.freedesktop.org/xorg/lib/libxtrans 31 32Please submit bug reports and requests to merge patches there. 33 34For patch submission instructions, see: 35 36 https://www.x.org/wiki/Development/Documentation/SubmittingPatches 37