#!/bin/sh

# gnash

#/usr/lib64/glib-2.0/include

# gst is to enable gstreamer instead of fftmpeg

cvs up -dP
./autogen.sh \
 && ./configure --disable-cairo \
      --with-glib-incl=/usr/include/glib-2.0 \
      --enable-plugin --enable-gui=sdl --enable-sound=gst

if [ $? -ne 0 ] ; then
	echo "ERROR."
	exit 1
fi

echo "Now run: make"


