mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-08-13 00:59:23 +00:00
build-sys: Fix syntax-check
This error was reported configure.ac:119:if test "x$have_gstreamer_0_10" = "xyes" -o "x$have_gstreamer_1_0" = "xyes"; then maint.mk: use "test C1 && test C2", not "test C1 -a C2"; use "test C1 || test C2", not "test C1 -o C2" Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Jonathon Jongsma <jjongsma@redhat.com>
This commit is contained in:
parent
0660e92017
commit
e6cf0dd056
@ -116,7 +116,7 @@ AS_IF([test x"$missing_gstreamer_elements" = xyes],
|
||||
[SPICE_WARNING([The GStreamer video encoder can be built but may not work.])
|
||||
])
|
||||
|
||||
if test "x$have_gstreamer_0_10" = "xyes" -o "x$have_gstreamer_1_0" = "xyes"; then
|
||||
if test "x$have_gstreamer_0_10" = "xyes" || test "x$have_gstreamer_1_0" = "xyes"; then
|
||||
PKG_CHECK_MODULES(ORC, orc-0.4)
|
||||
AC_SUBST(ORC_CFLAGS)
|
||||
AC_SUBST(ORC_LIBS)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user