From 7cd75e8c9404787736ef2207fdee22b0d89d2822 Mon Sep 17 00:00:00 2001 From: Michael Gruner Date: Tue, 9 Jul 2019 14:56:31 -0600 Subject: [PATCH 1/2] Modify autogen.sh to allow cross-compilation --- autogen.sh | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/autogen.sh b/autogen.sh index 9df38d3..9df3227 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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 From 87a172e84010ad90d8e174ce1c198c4b37f84862 Mon Sep 17 00:00:00 2001 From: Michael Gruner Date: Tue, 9 Jul 2019 16:22:52 -0600 Subject: [PATCH 2/2] Bump hotfix version number --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c60a556..30bf972 100644 --- a/configure.ac +++ b/configure.ac @@ -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