mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
a8636b4310
This patch allows for regenerating the configure script from a build directory that is not the actual source directory. Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
38 lines
722 B
Bash
Executable file
38 lines
722 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PROJECT="gstreamer-vaapi"
|
|
|
|
test -n "$srcdir" || srcdir="`dirname \"$0\"`"
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
if ! test -f "$srcdir/configure.ac"; then
|
|
echo "Failed to find the top-level $PROJECT directory"
|
|
exit 1
|
|
fi
|
|
|
|
olddir="`pwd`"
|
|
cd "$srcdir"
|
|
|
|
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
|
|
|
|
cd "$olddir"
|
|
|
|
if test -z "$NO_CONFIGURE"; then
|
|
$srcdir/configure "$@" && echo "Now type 'make' to compile $PROJECT."
|
|
fi
|