mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
cdd33a433e
Also do not generate tamplate files as all the documentation is inline. Drop un-needed code in autogen.sh as well. Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
35 lines
668 B
Bash
Executable file
35 lines
668 B
Bash
Executable file
#!/bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PROJECT=gstreamer-vaapi
|
|
TEST_TYPE=-d
|
|
FILE=gst-libs
|
|
|
|
test $TEST_TYPE $FILE || {
|
|
echo "You must run this script in the top-level $PROJECT directory"
|
|
exit 1
|
|
}
|
|
|
|
mkdir -p m4
|
|
|
|
GTKDOCIZE=`which gtkdocize`
|
|
if test -z $GTKDOCIZE; then
|
|
echo "*** No gtk-doc support ***"
|
|
echo "EXTRA_DIST =" > gtk-doc.make
|
|
else
|
|
gtkdocize || exit $?
|
|
fi
|
|
|
|
AUTORECONF=`which autoreconf`
|
|
if test -z $AUTORECONF; then
|
|
echo "*** No autoreconf found ***"
|
|
exit 1
|
|
else
|
|
autoreconf -v --install || exit $?
|
|
fi
|
|
|
|
if test -z "$NO_CONFIGURE"; then
|
|
./configure "$@" && echo "Now type 'make' to compile $PROJECT."
|
|
fi
|