SDL2_mixer failed init on mac (runtime)

having hard time with Sdl2 on mac. The code compiles well but on runtime Mix_init failed with this error:

Mix_Init:OGG Support Not Available

Strange thing as I installed sdl2_mixer like this:

brew install SDL2_mixer --with-libvobis

t
his is the code for initialization

int flags = MIX_INIT_OGG;
int initted = Mix_Init(flags);
if ((initted & flags) != flags)
{
    printf("Mix_Init: Failed to init SDL_Mixer\n");
    printf("Mix_Init: %s\n", Mix_GetError());
    MSG_EXIT("Exiting ",1);
}

Thank you.