if you're going to compile vorbis you'll need the following modules ogg vorbis if you're goin to compile the plugins you'll also need vorbis-plugins if you're going to compile the tools you'll need ao vorbis-tools all of these should build with exception of ao and vorbis-plugins. There were some problems from the merge that I didn't catch before leaving for austin, but I have fixed these today. The reason they are split, is because most likely nothing in ogg will change much. And if you're working on tools, you probably won't be working on libvorbis. and if you're wokring on a new codec, you won't want anything vorbis like :) We'll try to get it so that you can grab heirarchies at once, but until we figure that out you'll have to download the separate modules. jack. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
Can I truly be the only one who's noticed this? The current mainline vorbis-tools won't build (at least on my linux box with dynamic libvorbis). The problem is that the AC_CHECK_LIB for libvorbis (vorbis-tools/configure.in) is being called without telling it to link against libogg and libm. In other words, AC_CHECK_LIB(vorbis, vorbis_info_init, LIBS="$LIBS -lvorbis", AC_MSG_ERROR([You must have libvorbis to compile vorbis-tools!!!])) Should be AC_CHECK_LIB(vorbis, vorbis_info_init, LIBS="$LIBS -lvorbis", AC_MSG_ERROR([You must have libvorbis to compile vorbis-tools!!!]), -logg -lm) This takes care of undefined references to oggpack_* and rint in libvorbis. This may just be a problem with older AC_CHECK_LIB macros (are newer ones more sophisticated?) --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.