# Exit on error:
set -e

wget http://xcb.freedesktop.org/dist/libpthread-stubs-0.3.tar.bz2
tar xf libpthread-stubs-0.3.tar.bz2
cd libpthread-stubs-0.3

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

make
make install

cd ..
exit 0
