configure.ac: Only build the plugin on 32bit x86 architectures.

Original commit message from CVS:
* configure.ac:
Only build the plugin on 32bit x86 architectures.
This commit is contained in:
Edward Hervey 2007-01-01 18:06:01 +00:00
parent f905a15acc
commit 6236d641f0
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-01-01 Edward Hervey <edward@fluendo.com>
* configure.ac:
Only build the plugin on 32bit x86 architectures.
2007-01-01 Lutz Mueller <lutz@topfrose.de>
reviewed by: Edward Hervey <edward@fluendo.com>

View file

@ -225,6 +225,12 @@ if test "x$HAVE_CXX" != "xyes"; then
AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | sed 's/modplug//g'`
fi
dnl real plugin only works on 32bit x86 for the time being.
if test "x$HAVE_CPU_I386" != "xyes" || test "xHAVE_CPU_X86_64" = "xyes"; then
AC_MSG_WARN([Not building real plugin, only works on 32bit x86 platforms])
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | sed 's/real//g'`
fi
AC_SUBST(GST_PLUGINS_SELECTED)