Hi there!
I just recently passed to OSX 10.11.1 and noticed a warning on exit when using the SFML audio module. It says
2015-11-04 23:17:10.816 Breakout-Clone
[8530:1171230] 23:17:10.816 WARNING: 140: This application, or a library it uses, is using the
deprecated Carbon Component Manager for hosting Audio Units. Support for this will be removed
in a future release. Also, this makes the host incompatible with version 3 audio units. Please
transition to the API's in AudioComponent.h.
And here is the minimal code that trigger it!
#include "ResourcePath.hpp"
#include <SFML/Audio.hpp>
int main(int, char const**)
{
sf::SoundBuffer Buffer;
Buffer.loadFromFile(resourcePath() + "Sound.ogg");
sf::Sound newSound;
newSound.setBuffer(Buffer);
newSound.play();
}
The warning is triggered on exit ( since it's a deprecation issue ) and is also triggered while using sf::Music
I hardly used SFML for sounds purpose, so I didn't noticed this until now !
I'm currently using SFML 2.3.2 alongside Xcode 7.0.1 and since i found no issue request about this, I wanted to ask if the problem comes from me ( which would be quite astonishing ) or if there is a fix already planned?
Thanks you for listening