mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
use GST_ARCH
Original commit message from CVS: use GST_ARCH
This commit is contained in:
parent
fc9738517b
commit
7ae3469e1c
3 changed files with 8 additions and 34 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac: use GST_ARCH to detect architecture
|
||||
|
||||
2004-02-12 Julien MOUTTE <julien@moutte.net>
|
||||
|
||||
* gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit d7fa1407cff7d2054ba22ac6824eba4086fdd047
|
||||
Subproject commit a2d2883febd16e51a267a580cc4413b2a17a91a9
|
36
configure.ac
36
configure.ac
|
@ -149,6 +149,9 @@ AC_ARG_WITH(pkg-config-path,
|
|||
AC_HELP_STRING([--with-pkg-config-path],[colon-separated list of pkg-config(1) dirs]),
|
||||
[export PKG_CONFIG_PATH=${withval}])
|
||||
|
||||
dnl check architecture
|
||||
GST_ARCH()
|
||||
|
||||
dnl Check for nasm
|
||||
AC_PATH_PROG(NASM_PATH, nasm, no)
|
||||
AC_SUBST(NASM_PATH)
|
||||
|
@ -206,39 +209,6 @@ fi
|
|||
|
||||
AC_SUBST(GST_CONTROL_LIBS)
|
||||
|
||||
dnl Set up conditionals for (target) architecture:
|
||||
dnl ==============================================
|
||||
|
||||
dnl Determine CPU
|
||||
case "x${target_cpu}" in
|
||||
xi?86 | k?) HAVE_CPU_I386=yes
|
||||
AC_DEFINE(HAVE_CPU_I386, 1, [Define if the target CPU is an x86])
|
||||
dnl FIXME could use some better detection
|
||||
dnl (ie CPUID)
|
||||
case "x${target_cpu}" in
|
||||
xi386 | xi486) ;;
|
||||
*) AC_DEFINE(HAVE_RDTSC, 1, [Define if RDTSC is available]) ;;
|
||||
esac ;;
|
||||
xpowerpc) HAVE_CPU_PPC=yes
|
||||
AC_DEFINE(HAVE_CPU_PPC, 1, [Define if the target CPU is a PPC]) ;;
|
||||
xalpha) HAVE_CPU_ALPHA=yes
|
||||
AC_DEFINE(HAVE_CPU_ALPHA, 1, [Define if the target CPU is an Alpha]) ;;
|
||||
xarm*) HAVE_CPU_ARM=yes
|
||||
AC_DEFINE(HAVE_CPU_ARM, 1, [Define if the target CPU is an ARM]) ;;
|
||||
xsparc*) HAVE_CPU_SPARC=yes
|
||||
AC_DEFINE(HAVE_CPU_SPARC, 1, [Define if the target CPU is a PPC]) ;;
|
||||
xmips*) HAVE_CPU_MIPS=yes
|
||||
AC_DEFINE(HAVE_CPU_MIPS, 1, [Define if the target CPU is a MIPS]) ;;
|
||||
xhppa*) HAVE_CPU_HPPA=yes
|
||||
AC_DEFINE(HAVE_CPU_HPPA, 1, [Define if the target CPU is a HPPA]) ;;
|
||||
esac
|
||||
# make these available to automake
|
||||
AM_CONDITIONAL(HAVE_CPU_I386, test "x$HAVE_CPU_I386" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_CPU_PPC, test "x$HAVE_CPU_PPC" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_CPU_ALPHA, test "x$HAVE_CPU_ALPHA" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_CPU_ARM, test "x$HAVE_CPU_ARM" = "xyes")
|
||||
AM_CONDITIONAL(HAVE_CPU_SPARC, test "x$HAVE_CPU_SPARC" = "xyes")
|
||||
|
||||
dnl Determine endianness
|
||||
AC_C_BIGENDIAN
|
||||
|
||||
|
|
Loading…
Reference in a new issue