On Fri, 2016-04-22 at 21:51 +0200, Ahmed S. Darwish wrote: > The advertised alternative, module-udev-detect, is Linux-specific. > > BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=94339 > Signed-off-by: Ahmed S. Darwish <darwish.07 at gmail.com> > --- > Â src/modules/module-detect.c | 3 +++ > Â 1 file changed, 3 insertions(+) > > diff --git a/src/modules/module-detect.c b/src/modules/module-detect.c > index a9a2de0..d6c6b76 100644 > --- a/src/modules/module-detect.c > +++ b/src/modules/module-detect.c > @@ -46,7 +46,10 @@ PA_MODULE_DESCRIPTION("Detect available audio hardware and load matching drivers > Â PA_MODULE_VERSION(PACKAGE_VERSION); > Â PA_MODULE_LOAD_ONCE(true); > Â PA_MODULE_USAGE("just-one="); > + > +#ifdef __linux__ > Â PA_MODULE_DEPRECATED("Please use module-udev-detect instead of module-detect!"); > +#endif > Â > Â static const char* const valid_modargs[] = { > Â Â Â Â Â "just-one", Thanks, applied. --Â Tanu