I've installed libvorbis, and that all seemed to go fine, and now I'm trying to install FFmbc with --enable-libvorbis but it fails with Error:libvorbis not found. In the config.log produced I get:
ld: warning: in /usr/lib/libvorbisenc.a, file was built for unsupported file format which
is not the architecture being linked (x86_64)
ld: warning: in /usr/lib/libvorbis.a, file was built for unsupported file format which
is not the architecture being linked (x86_64)
ld: warning: in /usr/lib/libogg.a, file was built for unsupported file format which
is not the architecture being linked (x86_64)
Undefined symbols:
"_vorbis_info_init", referenced from:
_main in ffconf.00FIGmPr.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
ERROR: libvorbis not found
it looks like something to do with compiling libvorbis for x86_64? I just did a standard
./configure && make && sudo make install
when I installed libvorbis, then I tried
./configure CC="gcc -arch x86_64" CXX="g++ -arch x86_64"
and
./configure --build=x86_64
but nothing worked. All the other dependencies (libx264, libfaac libmp3lame etc) worked, just not libvorbis.
This is OS X 10.6.8
