http://bugs.winehq.org/show_bug.cgi?id=15610
--- Comment #4 from Austin English austinenglish@gmail.com 2008-10-14 17:03:53 --- (In reply to comment #3)
sys/asoundlib.h is obsoleted for some time, applications should use alsa/asoundlib.h instead; former header issue #warning about this which kills this one. Wine uses alsa/asoundlib.h when possible and falls back to sys/ variant if alsa/asoundlib.h does not exist. Removing sys/asoundlib.h is not an option I guess, given desired compatibility level. I can see two ways:
- just ignore this warning. If sys/asoundlib.h warns about deprecation then
alsa/asoundlib.h should exist and it will be used 2) remove -Werror from CFLAGS during configure
That was the same conclusion I came to. It doesn't seem to cause any problems, and can be safely ignored. I'm not sure if sys/asoundlib.h is still used anywhere, and thus could be safely removed...