mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 15:08:53 +00:00
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:
parent
f905a15acc
commit
6236d641f0
2 changed files with 11 additions and 0 deletions
|
@ -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>
|
2007-01-01 Lutz Mueller <lutz@topfrose.de>
|
||||||
|
|
||||||
reviewed by: Edward Hervey <edward@fluendo.com>
|
reviewed by: Edward Hervey <edward@fluendo.com>
|
||||||
|
|
|
@ -225,6 +225,12 @@ if test "x$HAVE_CXX" != "xyes"; then
|
||||||
AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
|
AC_MSG_WARN([Not compiling plug-ins requiring C++ compiler])
|
||||||
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | sed 's/modplug//g'`
|
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | sed 's/modplug//g'`
|
||||||
fi
|
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)
|
AC_SUBST(GST_PLUGINS_SELECTED)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue