Commit 64caabde authored by Martin Storsjö's avatar Martin Storsjö Committed by Jean-Baptiste Kempf

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: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 9322b68a
......@@ -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
......
......@@ -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 ###
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment