Default sound card for FreeBSD

This commit is contained in:
Julien BLACHE 2010-05-01 20:03:36 +02:00
parent 882b42f83c
commit b615946989

View File

@ -68,7 +68,11 @@ static cfg_opt_t sec_library[] =
static cfg_opt_t sec_audio[] =
{
CFG_STR("nickname", "Computer", CFGF_NONE),
#ifdef __linux__
CFG_STR("card", "default", CFGF_NONE),
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
CFG_STR("card", "/dev/dsp", CFGF_NONE),
#endif
CFG_END()
};