繁体   English   中英

./configure 找不到头文件

[英]./configure unable to find header files

我正在编译一个使用 SDL_mixer 播放.ogg文件的项目。 但是, Mix_Init(MIX_INIT_OGG)失败,并且Mix_GetError()返回"Mixer not built with Ogg Vorbis support" 我使用的 SDL_mixer 版本是 1.2.12,通过 Homebrew 下载。

因此,我下载了 SDL_mixer(相同版本,1.2.12)的源代码,并尝试使用 Ogg 支持构建它,即./configure --enable-music-ogg ,但configure无法找到 Vorbis 头文件。 这是它给出的输出:

checking vorbis/vorbisfile.h usability... no
checking vorbis/vorbisfile.h presence... no
checking for vorbis/vorbisfile.h... no
checking for ov_open_callbacks in -lvorbisfile... no
configure: WARNING: *** Unable to find Ogg Vorbis library (http://www.xiph.org/)
configure: WARNING: Ogg Vorbis support disabled

我什至尝试通过--includedir=/usr/local/includeconfigure ,但没有成功。 我在/usr/local/include有 Vorbis 和 Ogg 头文件,所以例如vorbisfile.h的路径是/usr/local/include/vorbis/vorbisfile.h 我还尝试从头开始构建 libogg 和 libvorbis,但我仍然遇到相同的错误。 我正在使用 OS X 10.11.1 测试版。

我究竟做错了什么?


编辑

brew ls sdl_mixer输出:

/usr/local/Cellar/sdl_mixer/1.2.12/include/SDL/SDL_mixer.h
/usr/local/Cellar/sdl_mixer/1.2.12/lib/libSDL_mixer-1.2.0.dylib
/usr/local/Cellar/sdl_mixer/1.2.12/lib/pkgconfig/SDL_mixer.pc
/usr/local/Cellar/sdl_mixer/1.2.12/lib/ (2 other files)

你现在可以跑

brew install sdl2_mixer --with-libvorbis

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM