bbidulock / icewm

A window manager designed for speed, usability, and consistency
Other
571 stars 97 forks source link

configure does not report selected audio support #699

Closed danfe closed 1 year ago

danfe commented 1 year ago

In the summary after the ./configure run, Audio support line is always empty. The following patch fixes it for me (now correctly reports "oss" in my case):

-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: Audio support: $ice_value" >&5
-$as_echo "Audio support: $ice_value" >&6; }
+  { $as_echo "$as_me:${as_lineno-$LINENO}: result: Audio support: $iface" >&5
+$as_echo "Audio support: $iface" >&6; }
gijsbers commented 1 year ago

iface is incorrect since it is also reported if that interface is unavailable. Edit configure.ac. Thanks!