# 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

CC=/static/bin/musl-gcc \
    LDFLAGS='-s -L/static/lib -static -static-libgcc' \
    ./configure --prefix=/static

make install
cd ..
rm -rf libpthread-stubs-0.3
rm libpthread-stubs-0.3.tar.bz2

exit 0
