configure.ac: don't use an undefined variable

If the environment lacks of gstreamer development packages, this error will
be reported to the user: "gstreamer- was not found"

This is because we are using an undefined variable in the printed message. The
fix simple changes the variable for the hard-coded string "1.0".

Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>

https://bugzilla.gnome.org/show_bug.cgi?id=757283
This commit is contained in:
Víctor Manuel Jáquez Leal 2015-11-04 15:37:34 +01:00
parent b76f4825c5
commit 486ad0ba5c

View file

@ -200,7 +200,7 @@ if $PKG_CONFIG --exists "gstreamer-1.0"; then
GST_PKG_VERSION="1.0" GST_PKG_VERSION="1.0"
fi fi
if test -z "$GST_PKG_VERSION"; then if test -z "$GST_PKG_VERSION"; then
AC_MSG_ERROR([gstreamer-$GST_PKG_VERSION was not found]) AC_MSG_ERROR([gstreamer-1.0 was not found])
fi fi
AC_MSG_RESULT([$GST_API_VERSION]) AC_MSG_RESULT([$GST_API_VERSION])