# 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=
make
make install
cd ..
rm -rf libpthread-stubs-0.3
rm libpthread-stubs-0.3.tar.bz2

exit 0
