# Depends on xcb-proto 1.9

# Exit on error:
set -e

#wget http://xcb.freedesktop.org/dist/libxcb-1.9.3.tar.bz2
#tar xf libxcb-1.9.3.tar.bz2
cd libxcb-1.9.3

./configure \
    --prefix=/usr \
    --sysconfdir=/etc \
    --localstatedir=/var

make
make install

cd ..
exit 0
