Description: ftbfs with GCC-4.7. (Closes: #667250) Author: Matthias Klose Last-Update: 2012-04-17 Index: libofa-0.9.3/examples/uselame.cpp =================================================================== --- libofa-0.9.3.orig/examples/uselame.cpp +++ libofa-0.9.3/examples/uselame.cpp @@ -11,6 +11,7 @@ #include "windows.h" #else #include +#include #endif AudioData *loadWaveFile(char *file); Index: libofa-0.9.3/examples/wavefile.cpp =================================================================== --- libofa-0.9.3.orig/examples/wavefile.cpp +++ libofa-0.9.3/examples/wavefile.cpp @@ -11,6 +11,7 @@ #include "io.h" #endif #include +#include static bool readBytes(int fd, unsigned char *buf, int size) { int ct = 0; >koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-11-07installer: Limit listbox height....Fixes: <https://issues.guix.gnu.org/44428>. * gnu/installer/newt.scm (init): Print screen size. * gnu/installer/newt/page.scm (default-listbox-height): New variable. (run-listbox-selection-page): Use it. * gnu/installer/newt/wifi.scm (wifi-listbox-height): Ditto. * gnu/installer/newt/network.scm (run-technology-page): Set the maximum listbox height to 5. * gnu/installer/newt/ethernet.scm (run-ethernet-page): Ditto. * gnu/installer/newt/final.scm (run-config-display-page): Change listbox height. * gnu/installer/newt/partition.scm (run-disk-page): Ditto. * gnu/installer/newt/welcome.scm (display-logo?): New procedure. (run-menu-page): Use it. * gnu/installer/steps.scm (%configuration-file-width): Remove it. Mathieu Othacehe
2020-03-05installer: Bypass connectivity check when /tmp/installer-assume-online exists....This is useful for automated tests. * gnu/installer/newt/network.scm (wait-service-online)[online?]: New procedure. Check for /tmp/installer-assume-online. Use it instead of 'connman-online?'. Ludovic Courtès