• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-1,8751,698

AUTHORSH A D16-Mar-2019342 86

COPYINGH A D16-Mar-20196.1 KiB12297

ChangeLogH A D16-Mar-201987.7 KiB2,4991,701

INSTALLH A D16-Mar-201915.4 KiB371288

Makefile.amH A D16-Mar-2019498 3122

Makefile.inH A D03-May-202229.4 KiB924824

README.mdH A D16-Mar-20191.5 KiB3725

Xtrans.cH A D16-Mar-201928.8 KiB1,353900

Xtrans.hH A D16-Mar-20198.6 KiB417237

Xtransint.hH A D16-Mar-20199.9 KiB433255

Xtranslcl.cH A D16-Mar-201954.1 KiB2,5001,798

Xtranssock.cH A D16-Mar-201961.2 KiB2,5761,875

Xtransutil.cH A D16-Mar-201914.6 KiB638437

aclocal.m4H A D16-Mar-2019120.6 KiB3,3393,066

compileH A D16-Mar-20197.2 KiB348258

config.guessH A D16-Mar-201943.1 KiB1,4771,284

config.subH A D16-Mar-201935.3 KiB1,8021,661

configureH A D16-Mar-2019351.6 KiB12,62210,116

configure.acH A D16-Mar-20192.2 KiB6452

docbook.amH A D16-Mar-20193.1 KiB10686

install-shH A D16-Mar-201914.3 KiB502327

missingH A D16-Mar-20196.7 KiB216143

transport.cH A D16-Mar-20192.8 KiB7519

xtrans.m4H A D16-Mar-20196.4 KiB175160

xtrans.pc.inH A D16-Mar-2019256 108

README.md

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 master 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