The libXdmcp package contains a library implementing the X Display Manager Control Protocol. This is useful for allowing clients to interact with the X Display Manager.
Download (HTTP): https://www.x.org/pub/individual/lib/libXdmcp-1.1.5.tar.xz
Install libXdmcp by running the following commands:
./configure $XORG_CONFIG --docdir=/usr/share/doc/libXdmcp-1.1.5 && make
To test the results, issue: make check.
Now, as the root
user:
make install
First clean the directory:
make distclean
Install lib32-libXdmcp by running the following commands:
CC="gcc -m32" CXX="g++" PKG_CONFIG_PATH=/usr/lib32/pkgconfig \ ./configure $XORG_CONFIG --libdir=/usr/lib32 && make
Now, as the root
user:
make DESTDIR=$PWD/DESTDIR install && cp -vr DESTDIR/usr/lib32/* /usr/lib32 && rm -rf DESTDIR && ldconfig