Missing vorbisfile.h
Can someone post a link to the vorbisfile.h file that I am missing.
Followed instructions verbatim for Fedora 24 build but gives me errors when I run make.
Gives me the same errors when using eclipse.
/usr/share/musescore/MuseScore-2.0.3/mscore/seq.cpp:49:31: fatal error: vorbis/vorbisfile.h: No such file or directory
#include
^
compilation terminated.
mscore/CMakeFiles/mscore.dir/build.make:1472: recipe for target 'mscore/CMakeFiles/mscore.dir/seq.cpp.o' failed
make[3]: *** [mscore/CMakeFiles/mscore.dir/seq.cpp.o] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory '/usr/share/musescore/MuseScore-2.0.3/build.release'
CMakeFiles/Makefile2:329: recipe for target 'mscore/CMakeFiles/mscore.dir/all' failed
make[2]: *** [mscore/CMakeFiles/mscore.dir/all] Error 2
make[2]: Leaving directory '/usr/share/musescore/MuseScore-2.0.3/build.release'
Makefile:149: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/usr/share/musescore/MuseScore-2.0.3/build.release'
Makefile:46: recipe for target 'release' failed
make: *** [release] Error 2
Searched my whole system, no such file.
vorbis tools are installed, what am I missing?
Comments
You might be getting the missing file(s) from https://www.xiph.org/downloads/
Or look at https://musescore.org/en/developers-handbook/compilation/compile-instru…, there it reads that you nees to install libvorbis-devel.x86_64
sudo yum install qt5-qtwebkit-devel.x86_64 qt5-qtxmlpatterns-devel.x86_64 qt5-qtsvg-devel.x86_64 alsa-lib-devel.x86_64 jack-audio-connection-kit-devel.x86_64 portaudio-devel.x86_64 pulseaudio-libs-devel.x86_64 libsndfile-devel.x86_64 libvorbis-devel.x86_64 qt5-qttools-devel.x86_64 cmake.x86_64 cmake-gui lame-devel.x86_64
In reply to You might be getting the by Jojo-Schmitz
Thank you,
I was looking at the instructions for Fedora 21 & 22 at https://musescore.org/en/developers-handbook/compilation/compile-instru…
dnf install libvorbis-devel, and it worked like a charm!
In reply to Thank you, I was looking at by pc-keving
Maybe that page needs to get updated?