Open GoogleCodeExporter opened 9 years ago
Confirmed this bug.
And temporary use the options:
./configure --with-alsa-prefix=/usr/lib/i386-linux-gnu
--with-samplerate-prefix=/usr/lib/i386-linux-gnu
--with-jack-prefix=/usr/lib/i386-linux-gnu
--with-lame-prefix=/usr/lib/i386-linux-gnu
--with-pulseaudio-prefix=/usr/lib/i386-linux-gnu
-with-vorbis-prefix=/usr/lib/i386-linux-gnu
or for 64bit:
/usr/lib/x86_64-linux-gnu
Original comment by lucka...@gmail.com
on 3 Apr 2012 at 10:33
I tried this and everything worked except for pulse on Ubuntu 12.04 x64. Any
idea where this is?
checking for pulseaudio libraries at /usr/lib/x86_64-linux-gnu ... configure:
WARNING: not found, building without PULSEAUDIO support
Original comment by jackiegl...@gmail.com
on 27 Jun 2012 at 7:47
That configure with a lot of arguments doesn't work for me. What works is
changing acinclude.m4 :
index c0adc6e..dc3e16f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -43,7 +43,7 @@ dnl by Florian Bomers
dnl-----------------------------------------------------------------------------
AC_DEFUN([LA_SEARCH_LIB],[
dnl look for lib
- LA_SEARCH_FILE($1, $3, $5 $5/lib64 $5/lib )
+ LA_SEARCH_FILE($1, $3, $5 $5/lib64 $5/lib $5/lib/x86_64-linux-gnu )
dnl look for header.
LA_SEARCH_FILE($2, $4, $5 $5/include )
if test ".$1" = "." || test ".$2" = "."; then
Original comment by flip.ro...@gmail.com
on 28 Jun 2012 at 2:11
Please also add $5/lib/i386-linux-gnu to the line
LA_SEARCH_FILE($1, $3, $5 $5/lib64 $5/lib $5/lib/x86_64-linux-gnu )
(at least to compile on 32 bit Ubuntu 12.04.2)
Cheers!
Original comment by sgo...@gmail.com
on 21 Jun 2013 at 5:40
Original issue reported on code.google.com by
flip.ro...@gmail.com
on 19 Jan 2012 at 12:41