Displaying 7 results from an estimated 7 matches for "lmad".
Did you mean:
lead
2003 Jun 12
1
static lib
I'm trying to link sox to the ogg vorbis static libraries but I'm
getting the following error:
gcc -L. -L./gsm -o sox sox.o -lst -lgsm -logg -lvorbis -lvorbisfile
-lvorbisenc -lmad -lmp3lame
ld: Undefined symbols:
_oggpack_bytes
_oggpack_get_buffer
_oggpack_reset
_oggpack_writeclear
_oggpack_writeinit
_oggpack_read
_oggpack_readinit
_oggpack_write
_oggpack_adv
_oggpack_look
_oggpack_writealign
_vorbis_packet_blocksize
_vorbis_synthesis
_vorbis_synthesis_trackonly
I don't...
2007 Mar 19
0
2 commits - configure.ac
...ac
index 7f41b65..6ea8b8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -135,10 +135,22 @@ if test "$HAVE_CAIRO" = "no"; then
AC_MSG_ERROR([cannot find cairo, which is required for build])
fi
-AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
-AC_SUBST(MAD_LIBS)
-if test "x$HAVE_MAD" = xyes; then
- AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled])
+AC_ARG_ENABLE(mad,
+ AS_HELP_STRING([--enable-mad],
+ [enable mad audio (default=yes)])],
+ enable_mad=$enableval,
+ enable_mad="yes")...
2007 Oct 25
0
[PATCH] Fix logic in mad detection
...udio (default=yes)])],
- enable_mad=$enableval,
- enable_mad="yes")
+ enable_mad=$enableval)
-if test "$enable_mad" = "yes"; then
+if test "$enable_mad" != "no"; then
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
AC_SUBST(MAD_LIBS)
if test "x$HAVE_MAD" = xyes; then
AC_DEFINE(HAVE_MAD, 1, [Define if mad is enabled])
else
- AC_MSG_ERROR([Couldn't find mad. You might need to install the libmad0-dev package.])
+ AC_MSG_WARN([Couldn't find mad. You...
2007 Mar 02
3
3.0.4 ACPI support and Opteron 2210 ?
Hello,
I originally posted this to xen-users, but someone suggested I post it here.
I am having ACPI problems on a PenguinComputing Altus1600 system.
It has 2x dual core Opteron 2210 processors.
The system boots with a standard Debian or Ubuntu SMP kernel, with ACPI
enabled. However the xen live cd, binary xen install, as well as my own custom
compile of xen 3.0.4 from source will not boot.
2007 Jul 09
2
ATA: abnormal status 0x7F on port 0xB887
...0000:00:08.0[A] -> Link [LMAC] -> GSI 22 (level,
low)
-> IRQ 50
PCI: Setting latency timer of device 0000:00:08.0 to 64
forcedeth: using HIGHDMA
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
eth0: forcedeth.c: subsystem: 015d9:1511 bound to 0000:00:08.0
ACPI: PCI Interrupt Link [LMAD] enabled at IRQ 21
ACPI: PCI Interrupt 0000:00:09.0[A] -> Link [LMAD] -> GSI 21 (level,
low)
-> IRQ 58
PCI: Setting latency timer of device 0000:00:09.0 to 64
forcedeth: using HIGHDMA
eth1: forcedeth.c: subsystem: 015d9:1511 bound to 0000:00:09.0
lp: driver loaded but no devices found
ACPI...
2007 Nov 28
0
7 commits - configure.ac libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_sprite_movie.c test/trace
...gure.ac b/configure.ac
index 924aa4d..bb86e8f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -206,7 +206,12 @@ AC_ARG_ENABLE(mad,
enable_mad="no")
if test "$enable_mad" = "yes"; then
- AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
+ PKG_CHECK_EXISTS([mad],[
+ MAD_VER=0.15.0
+ PKG_CHECK_MODULES(MAD, mad >= $MAD_VER mad >= $MAD_VER, HAVE_MAD=yes, HAVE_MAD=no)
+ ], [
+ AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="...
2007 Oct 28
0
9 commits - configure.ac libswfdec/swfdec_as_context.c libswfdec/swfdec_audio_internal.h libswfdec/swfdec_codec_audio.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_sound.c
...[enable mad audio (default=yes)])],
+ [enable mad audio (default=no)])],
enable_mad=$enableval,
- enable_mad="yes")
+ enable_mad="no")
if test "$enable_mad" = "yes"; then
AC_CHECK_LIB(mad, mad_decoder_finish, HAVE_MAD="yes" MAD_LIBS="-lmad", HAVE_MAD="no")
@@ -211,9 +211,9 @@ dnl So you'll have to update your ffmpeg checkout if compilation fails.
dnl Or you submit a patch that detects ffmpeg reliably on the distros.
AC_ARG_ENABLE(ffmpeg,
AS_HELP_STRING([--enable-ffmpeg],
- [enable ffmpeg support (default=ye...