I'm experiencing an issue trying to compile vorbis-tools 1.4.0 on the latest version of MSYS2. I'm passing --with-ogg and --with-vorbis flags to the configure script, as I'm first building libogg and libvorbis separately and then using those library builds to build vorbis-tools. It seems to recognize libogg and libvorbis when configuring, but it then gives this error:
checking for OGG... no
checking for Ogg... yes
checking for oggpack_writealign... yes
checking for VORBIS... no
checking for ov_read_filter... no
checking for library containing cos... none required
checking for Vorbis... yes
checking whether OV_ECTL_COUPLING_SET is declared... no
configure: error: Vorbis >= 1.3.0 required !
What's really strange is that this only occurs if there isn't already an installation of libogg and libvorbis available in the include and library paths that GCC is using.
I think the problem I'm experiencing here is that, when doing the check for OV_ECTL_COUPLING_SET (and possibly others), it doesn't take the --with-ogg and --with-vorbis flags into account.
Any thoughts on what else could be causing the problem?
I'm experiencing an issue trying to compile vorbis-tools 1.4.0 on the latest version of MSYS2. I'm passing --with-ogg and --with-vorbis flags to the configure script, as I'm first building libogg and libvorbis separately and then using those library builds to build vorbis-tools. It seems to recognize libogg and libvorbis when configuring, but it then gives this error:
What's really strange is that this only occurs if there isn't already an installation of libogg and libvorbis available in the include and library paths that GCC is using.
I think the problem I'm experiencing here is that, when doing the check for OV_ECTL_COUPLING_SET (and possibly others), it doesn't take the --with-ogg and --with-vorbis flags into account.
Any thoughts on what else could be causing the problem?