Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ogg/vorbis support in libsdl2-mixer #306

Closed
wants to merge 2 commits into from

Commits on Dec 31, 2020

  1. Fix ogg/vorbis support in libsdl2-mixer

    Remove --enable-music-ogg-tremor  as it broke vorbis support:
    ```
    checking tremor/ivorbisfile.h usability... no
    checking tremor/ivorbisfile.h presence... no
    checking for tremor/ivorbisfile.h... no
    checking for ov_open_callbacks in -lvorbisidec... no
    configure: WARNING: *** Unable to find Ogg Vorbis Tremor library (http://www.xiph.org/)
    configure: WARNING: Ogg Vorbis support disabled
    ```
    
    With this change:
    ```
    checking vorbis/vorbisfile.h usability... yes
    checking vorbis/vorbisfile.h presence... yes
    checking for vorbis/vorbisfile.h... yes
    checking for ov_open_callbacks in -lvorbisfile... yes
    -- dynamic libvorbisfile -> libvorbisfile.so.3
    ```
    jabdoa2 committed Dec 31, 2020
    Configuration menu
    Copy the full SHA
    0e40b81 View commit details
    Browse the repository at this point in the history
  2. Update libsdl2-mixer_2.0.4.bb

    Also set --disable-music-ogg-shared to lib statically
    jabdoa2 committed Dec 31, 2020
    Configuration menu
    Copy the full SHA
    7d7e116 View commit details
    Browse the repository at this point in the history