summaryrefslogtreecommitdiffstats
path: root/m4/a52.m4
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-18 00:13:45 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-18 00:13:45 +0000
commitce0bf2d89945deefb069eadc83fbf1dfea0fd950 (patch)
tree71c2183ac79c8580f24381216190339090f9eebc /m4/a52.m4
parent826fc0784c0e2d4d712d0b77eeb5080d0e865ee2 (diff)
m4/a52.m4: fix compilation with -Wall -Werror
Original commit message from CVS: * m4/a52.m4 : fix compilation with -Wall -Werror * m4/libfame.m4 : idem * m4/libmikmod.m4 : idem
Diffstat (limited to 'm4/a52.m4')
-rw-r--r--m4/a52.m412
1 files changed, 8 insertions, 4 deletions
diff --git a/m4/a52.m4 b/m4/a52.m4
index 84bbf61f..6f476af8 100644
--- a/m4/a52.m4
+++ b/m4/a52.m4
@@ -79,12 +79,14 @@ int
main ()
{
a52_state_t *state;
+ state = a52_init (0);
+ 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.3."
+ echo "*** Your a52dec is borked somehow. Please update to 0.7.4."
else
AC_TRY_RUN([
#include <inttypes.h>
@@ -93,13 +95,15 @@ main ()
int
main ()
{
- int i = sizeof (a52_state_t);
- return 0;
+ a52_state_t *state;
+ int i = sizeof (state);
+ if ( i )
+ return 0;
}
], 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.3."
+ echo "*** Your a52dec is too old. Please update to 0.7.4."
fi
fi
CFLAGS="$ac_save_CFLAGS"