mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
If nasm isn't present, mpeg2enc plugin just ignores the .s files,
Original commit message from CVS: If nasm isn't present, mpeg2enc plugin just ignores the .s files, C equivalents will be used.
This commit is contained in:
parent
d840ef3e7d
commit
daf7640e76
1 changed files with 4 additions and 1 deletions
|
@ -47,11 +47,13 @@ dnl ================
|
||||||
|
|
||||||
dnl Check for nasm
|
dnl Check for nasm
|
||||||
AC_PATH_PROG(NASM_PATH, nasm, no)
|
AC_PATH_PROG(NASM_PATH, nasm, no)
|
||||||
|
AC_SUBST(NASM_PATH)
|
||||||
if test x$NASM_PATH = xno; then
|
if test x$NASM_PATH = xno; then
|
||||||
AC_MSG_WARN(Couldn't find nasm)
|
AC_MSG_WARN(Couldn't find nasm)
|
||||||
|
HAVE_NASM="no"
|
||||||
else
|
else
|
||||||
AC_DEFINE(HAVE_NASM)
|
AC_DEFINE(HAVE_NASM)
|
||||||
AC_SUBST(NASM_PATH)
|
HAVE_NASM="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl Check for essential libraries first:
|
dnl Check for essential libraries first:
|
||||||
|
@ -318,6 +320,7 @@ AM_CONDITIONAL(HAVE_LIBMMX, test "x$USE_LIBMMX" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_ATOMIC_H, test "x$USE_ATOMIC_H" = "xyes")
|
AM_CONDITIONAL(HAVE_ATOMIC_H, test "x$USE_ATOMIC_H" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_XAUDIO, test "x$HAVE_XAUDIO" = "xyes")
|
AM_CONDITIONAL(HAVE_XAUDIO, test "x$HAVE_XAUDIO" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_CSSAUTH, test "x$HAVE_CSSAUTH" = "xyes")
|
AM_CONDITIONAL(HAVE_CSSAUTH, test "x$HAVE_CSSAUTH" = "xyes")
|
||||||
|
AM_CONDITIONAL(HAVE_NASM, test "x$HAVE_NASM" = "xyes")
|
||||||
AM_CONDITIONAL(HAVE_GTK_DOC, $HAVE_GTK_DOC)
|
AM_CONDITIONAL(HAVE_GTK_DOC, $HAVE_GTK_DOC)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue