Skip to content
Snippets Groups Projects
Commit 37c587f9 authored by Alexandre Lision's avatar Alexandre Lision Committed by Tristan Matthews
Browse files

Fix typo when checking if building for android

Change-Id: I50390446653981abee2c008d4d42701fb9dd2764
parent 8c6f14a8
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ AM_CONDITIONAL([USE_ANDROID], test "x$ANDROID" = "xyes")
PKG_CHECK_MODULES(YAML, [yaml-0.1],, AC_MSG_ERROR([Unable to find yaml]))
if test "xSANDROID" = "xyes"; then
if test "x$ANDROID" = "xyes"; then
dnl Check for OpenSL
AC_ARG_WITH([opensl],
AS_HELP_STRING([--without-opensl],
......@@ -98,7 +98,6 @@ if test "xSANDROID" = "xyes"; then
[AC_CHECK_HEADER(["SLES/OpenSLES.h"],
[have_opensl=yes], [have_opensl=no])],
[have_opensl=no])
AC_DEFINE_UNQUOTED([HAVE_OPENSL],
`if test "x$have_opensl" = "xyes"; then echo 1; else echo 0; fi`,
[Define if you have OpenSL])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment