mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
- Change from == to = since == only works with GNU test and not the version of test shipping with Solaris (and probab...
Original commit message from CVS: 2001-06-08 Christian Schaller <Uraeus@linuxrising.org> - Change from == to = since == only works with GNU test and not the version of test shipping with Solaris (and probably other Unices) - Once again a ordinary user has to teach hackers to hack :)
This commit is contained in:
parent
f79f04f876
commit
6a448d5a0b
1 changed files with 2 additions and 2 deletions
|
@ -540,7 +540,7 @@ AC_CHECK_HEADER(gsm.h, :,
|
|||
AC_SUBST(GSM_CFLAGS)
|
||||
AC_SUBST(GSM_LIBS)
|
||||
|
||||
if test "x$HAVE_LIBGSM" == "xyes"; then
|
||||
if test "x$HAVE_LIBGSM" = "xyes"; then
|
||||
AC_DEFINE(HAVE_LIBGSM, 1, [Define if GSM library is available])
|
||||
else
|
||||
AC_MSG_WARN(
|
||||
|
@ -646,7 +646,7 @@ fi
|
|||
AC_SUBST(SDL_LIBS)
|
||||
AC_SUBST(SDL_CFLAGS)
|
||||
|
||||
if test "x$HAVE_LIBSDL" == "xno"; then
|
||||
if test "x$HAVE_LIBSDL" = "xno"; then
|
||||
AC_MSG_WARN(
|
||||
***** NOTE: These plugins won't be built: sdlvideosink
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue