iomx: Always build this module if building for android

Remove the configure option for enabling iomx - there is no point
in using this module on any other platform than android.

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Martin Storsjö 2012-10-05 21:45:41 +03:00 committed by Jean-Baptiste Kempf
parent 9322b68a1f
commit 64caabde11
2 changed files with 5 additions and 12 deletions

View File

@ -2093,16 +2093,6 @@ then
VLC_ADD_PLUGIN([omxil])
fi
dnl
dnl iomx codec plugin
dnl
AC_ARG_ENABLE(iomx,
[ --enable-iomx iomx codec module (default disabled)])
if test "${enable_iomx}" = "yes"
then
VLC_ADD_PLUGIN([iomx])
fi
dnl
dnl CrystalHD codec plugin
dnl

View File

@ -147,8 +147,11 @@ libiomx_plugin_la_SOURCES = $(libomxil_plugin_la_SOURCES)
libiomx_plugin_la_CPPFLAGS = $(libomxil_plugin_la_CPPFLAGS) -DUSE_IOMX
libiomx_plugin_la_LIBADD = $(libomxil_plugin_la_LIBADD)
libvlc_LTLIBRARIES += $(LTLIBomxil) $(LTLIBiomx)
EXTRA_LTLIBRARIES += libomxil_plugin.la libiomx_plugin.la
libvlc_LTLIBRARIES += $(LTLIBomxil)
EXTRA_LTLIBRARIES += libomxil_plugin.la
if HAVE_ANDROID
libvlc_LTLIBRARIES += libiomx_plugin.la
endif
### Windows DLL loader ###