# Exit on error:
set -e

wget http://ftpmirror.gnu.org/bison/bison-2.4.3.tar.bz2
tar xf bison-2.4.3.tar.bz2
cd bison-2.4.3

#sed -i '/gets is a security hole/d' lib/stdio.in.h

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
