- 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:
Christian Schaller 2001-08-06 16:46:05 +00:00
parent f79f04f876
commit 6a448d5a0b

View file

@ -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
)