Skip to content

Commit

Permalink
Merge branch 'hotfix/enable-cross-compile' into dev-0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgruner committed Jul 9, 2019
2 parents 4da28ca + 87a172e commit dfcd55c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,17 @@
# ACLOCAL, AUTOPOINT and/or LIBTOOLIZE to the right versions, or leave them
# unset and get the defaults

autoreconf --verbose --force --install --make || {
echo 'autogen.sh failed';
exit 1;
}
test -n "$srcdir" || srcdir=`dirname "$0"`
test -n "$srcdir" || srcdir=.

./configure || {
echo 'configure failed';
olddir=`pwd`
cd "$srcdir"

autoreconf --verbose --force --install || {
echo 'autogen.sh failed';
exit 1;
}

echo
echo "Now type 'make' to compile this module."
echo "Now you can proceed to configure this project"
echo
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl required version of autoconf
AC_PREREQ([2.53])

dnl TODO: fill in your package name and package version here
AC_INIT([gst-perf],[0.2.1])
AC_INIT([gst-perf],[0.2.2])

dnl required versions of gstreamer and plugins-base
GST_REQUIRED=1.0.0
Expand Down

0 comments on commit dfcd55c

Please sign in to comment.