summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2004-04-04 23:38:15 +0000
committerBenjamin Otte <otte@gnome.org>2004-04-04 23:38:15 +0000
commitc3027716544b85b1bd5cb50f56bd6969934b7ed9 (patch)
tree5fb13668a454bd42c21569685b01d9ea90f53ca7
parent923ce231922a366cf9d545747cfe45149bee94d0 (diff)
downloadgst-plugins-bad-c3027716544b85b1bd5cb50f56bd6969934b7ed9.tar.gz
gst-plugins-bad-c3027716544b85b1bd5cb50f56bd6969934b7ed9.tar.bz2
gst-plugins-bad-c3027716544b85b1bd5cb50f56bd6969934b7ed9.zip
configure.ac: fix == in test(1) operator
Original commit message from CVS: reviewed by Benjamin Otte <otte@gnome.org> * configure.ac: fix == in test(1) operator
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ccd6ee0..7a0d29a2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,13 @@
reviewed by Benjamin Otte <otte@gnome.org>
* configure.ac:
+ fix == in test(1) operator
+
+2004-04-05 Julio M. Merino Vidal <jmmv@menta.net>
+
+ reviewed by Benjamin Otte <otte@gnome.org>
+
+ * configure.ac:
fix --export-symblos-regex to a working regex.
2004-04-04 Benjamin Otte <otte@gnome.org>
diff --git a/configure.ac b/configure.ac
index d3b3b3b5..7311bc78 100644
--- a/configure.ac
+++ b/configure.ac
@@ -600,7 +600,7 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
# first check X
HAVE_V4L="no"
- if test "$HAVE_X" == "yes"
+ if test "$HAVE_X" = "yes"
then
AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_V4L="yes", HAVE_V4L="no", [
#include <sys/types.h>
@@ -615,7 +615,7 @@ dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
translit(dnm, m, l) AM_CONDITIONAL(USE_V4L2, true)
GST_CHECK_FEATURE(V4L2, [Video 4 Linux 2], v4l2src, [
HAVE_V4L2="no"
- if test "$HAVE_X" == "yes"
+ if test "$HAVE_X" = "yes"
then
AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
AC_TRY_COMPILE([