1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 12:28:22 +01:00

- A few additions and enhancements to the Install script.

- Removed the --disable-sound option to the configure script.
This commit is contained in:
dan
2001-05-13 00:28:55 +00:00
parent 3208e193d7
commit 430c12e2b2
11 changed files with 55 additions and 69 deletions

View File

@@ -1319,7 +1319,7 @@ wShowInfoPanel(WScreen *scr)
strcat(buffer, " ");
}
strcat(buffer, _("\nAdditional Support For: "));
strcat(buffer, _("\nAdditional support for: "));
{
char *list[8];
char buf[80];
@@ -1337,9 +1337,6 @@ wShowInfoPanel(WScreen *scr)
#ifdef OLWM_HINTS
list[j++] = "OLWM";
#endif
#ifdef WSOUND
list[j++] = _("Sound");
#endif
buf[0] = 0;
for (i = 0; i < j; i++) {
@@ -1354,6 +1351,12 @@ wShowInfoPanel(WScreen *scr)
strcat(buffer, buf);
}
if (wPreferences.no_sound) {
strcat(buffer, _("\nSound support disabled"));
} else {
strcat(buffer, _("\nSound support enabled"));
}
panel->infoL = WMCreateLabel(panel->win);
WMResizeWidget(panel->infoL, 350, 75);