aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/Makefile.in9
-rw-r--r--m4/a52.m48
2 files changed, 15 insertions, 2 deletions
diff --git a/m4/Makefile.in b/m4/Makefile.in
index 815ae90..1f3bcb1 100644
--- a/m4/Makefile.in
+++ b/m4/Makefile.in
@@ -50,6 +50,7 @@ PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
+target_triplet = @target@
subdir = m4
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
@@ -205,6 +206,10 @@ GST_PREFIX = @GST_PREFIX@
GST_REVISION = @GST_REVISION@
GST_TOOLS_DIR = @GST_TOOLS_DIR@
GTKDOC_CHECK = @GTKDOC_CHECK@
+GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
+GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
+GTKDOC_MKPDF = @GTKDOC_MKPDF@
+GTKDOC_REBASE = @GTKDOC_REBASE@
HAVE_CXX = @HAVE_CXX@
HAVE_DVDREAD = @HAVE_DVDREAD@
HAVE_LAME = @HAVE_LAME@
@@ -351,7 +356,11 @@ sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
+target = @target@
target_alias = @target_alias@
+target_cpu = @target_cpu@
+target_os = @target_os@
+target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
diff --git a/m4/a52.m4 b/m4/a52.m4
index 0065dee..e562581 100644
--- a/m4/a52.m4
+++ b/m4/a52.m4
@@ -79,14 +79,18 @@ int
main ()
{
a52_state_t *state;
+#if defined(A52_ACCEL_DETECT)
+ state = a52_init ();
+#else
state = a52_init (0);
+#endif
a52_free (state);
return 0;
}
],, HAVE_A52DEC=no, [echo $ac_n "cross compiling; assumed OK... $ac_c"])
if test HAVE_A52DEC = "no"; then
- echo "*** Your a52dec is borked somehow. Please update to 0.7.4."
+ echo "*** Your a52dec is borked somehow. Please update to 0.7.4 or newer."
else
AC_TRY_RUN([
#include <inttypes.h>
@@ -102,7 +106,7 @@ main ()
], HAVE_A52DEC=no,, [echo $ac_n "cross compiling; assumed OK... $ac_c"])
if test HAVE_A52DEC = "no"; then
- echo "*** Your a52dec is too old. Please update to 0.7.4."
+ echo "*** Your a52dec is too old. Please update to 0.7.4 or newer."
fi
fi
CFLAGS="$ac_save_CFLAGS"