Fix backend detection, by commitless vtorri

SVN revision: 44910
This commit is contained in:
Iván Briano 2010-01-05 13:15:22 +00:00
parent 4070ab5f6a
commit d60273415d
1 changed files with 6 additions and 6 deletions

View File

@ -5,14 +5,14 @@ AC_DEFUN([EMOTION_CHECK_DEP_XINE],
[ [
requirement="" requirement=""
have_dep="no"
PKG_CHECK_MODULES([XINE], PKG_CHECK_MODULES([XINE],
[libxine >= 1.1.1 evas >= 0.9.9], [libxine >= 1.1.1 evas >= 0.9.9],
[ [
have_dep="yes" have_dep="yes"
requirement="libxine" requirement="libxine"
]) ],
[have_dep="no"])
if test "x$1" = "xstatic" ; then if test "x$1" = "xstatic" ; then
requirement_emotion="${requirement} ${requirement_emotion}" requirement_emotion="${requirement} ${requirement_emotion}"
@ -32,14 +32,14 @@ GSTPLUG_REQS=0.10.1
GST_MAJORMINOR=0.10 GST_MAJORMINOR=0.10
requirement="" requirement=""
have_dep="no"
PKG_CHECK_MODULES([GSTREAMER], PKG_CHECK_MODULES([GSTREAMER],
[gstreamer-$GST_MAJORMINOR >= $GST_REQS gstreamer-plugins-base-$GST_MAJORMINOR >= $GSTPLUG_REQS evas >= 0.9.9], [gstreamer-$GST_MAJORMINOR >= $GST_REQS gstreamer-plugins-base-$GST_MAJORMINOR >= $GSTPLUG_REQS evas >= 0.9.9],
[ [
have_dep="yes" have_dep="yes"
requirement="gstreamer-$GST_MAJORMINOR gstreamer-plugins-base-$GST_MAJORMINOR" requirement="gstreamer-$GST_MAJORMINOR gstreamer-plugins-base-$GST_MAJORMINOR"
]) ],
[have_dep="no"])
if test "x${have_dep}" = "xyes" ; then if test "x${have_dep}" = "xyes" ; then
@ -70,14 +70,14 @@ AC_DEFUN([EMOTION_CHECK_DEP_VLC],
[ [
requirement="" requirement=""
have_dep="no"
PKG_CHECK_MODULES([VLC], PKG_CHECK_MODULES([VLC],
[libvlc >= 0.9 evas >= 0.9.9], [libvlc >= 0.9 evas >= 0.9.9],
[ [
have_dep="yes" have_dep="yes"
requirement="libvlc" requirement="libvlc"
]) ],
[have_dep="no"])
if test "x$1" = "xstatic" ; then if test "x$1" = "xstatic" ; then
requirement_emotion="${requirement} ${requirement_emotion}" requirement_emotion="${requirement} ${requirement_emotion}"