Taken from Debian: https://salsa.debian.org/multimedia-team/taopm/-/raw/master/debian/patches/01-add-missing-headers.diff Description: Adding missing headers Author: Tiago Bortoletto Vaz Last-Update: 2013-04-17 --- a/libtao/Tao.cc +++ b/libtao/Tao.cc @@ -18,6 +18,7 @@ #include "Tao.h" #include +#include extern Tao tao; float &Time = tao.synthesisEngine.time; --- a/libtao/TaoDevice.cc +++ b/libtao/TaoDevice.cc @@ -20,6 +20,7 @@ #include "Tao.h" #include "TaoAccessPoint.h" #include "TaoInstrument.h" +#include TaoDevice::TaoDevice() { --- a/libtao/TaoInstrument.cc +++ b/libtao/TaoInstrument.cc @@ -23,6 +23,7 @@ //#include #include #include +#include float TaoInstrument::defaultMass=3.5; // Set to optimum value for // frequency response of --- a/libtao/TaoOutput.cc +++ b/libtao/TaoOutput.cc @@ -24,6 +24,7 @@ #include #include "TaoOutput.h" #include "Tao.h" +#include extern Tao tao; --- a/libtao/TaoPitch.cc +++ b/libtao/TaoPitch.cc @@ -30,6 +30,7 @@ #include "TaoPitch.h" #include #include +#include // This class allows pitches and frequencies to be specified in a number of // different formats including the following: --- a/taoparse/taoparser.yy +++ b/taoparse/taoparser.yy @@ -19,7 +19,8 @@ #include #include -#include +#include +#include #include "taoparserdefs.h" int yyerror(char *s); --- a/libtao/TaoGraphicsEngine.cc +++ b/libtao/TaoGraphicsEngine.cc @@ -27,7 +27,8 @@ #include "TaoInstrument.h" #include "TaoAccessPoint.h" #include "TaoDevice.h" -#include +#include +#include extern Tao tao; extern void taoMasterTick(); --- a/tao2aiff/tao2aiff.cc +++ b/tao2aiff/tao2aiff.cc @@ -25,6 +25,8 @@ #include #include "audiofile.h" #include "tao2aiff.h" +#include +#include main(int argc, char **argv) --- a/tao2wav/tao2wav.cc +++ b/tao2wav/tao2wav.cc @@ -25,6 +25,8 @@ #include #include "audiofile.h" #include "tao2wav.h" +#include +#include main(int argc, char **argv) { /guix/log/gnu?id=b2783361807285a5df703264ba902606b1bb7ce4&showmsg=1'>gnu/installer/newt/locale.scm
AgeCommit message (Collapse)Author
2022-02-02installer: Use named prompt to abort or break installer steps.Josselin Poiret
* gnu/installer/steps.scm (run-installer-steps): Set up 'installer-step prompt. * gnu/installer/newt/ethernet.scm (run-ethernet-page) * gnu/installer/newt/final.scm (run-config-display-page, run-install-failed-page) * gnu/installer/newt/keymap.scm (run-layout-page, run-variant-page) * gnu/installer/newt/locale.scm (run-language-page, run-territory-page, run-codeset-page, run-modifier-page, run-locale-page) * gnu/installer/newt/network.scm (run-technology-page, wait-service-online) * gnu/installer/newt/page.scm (run-listbox-selection-page, run-checkbox-tree-page) * gnu/installer/newt/partition.scm (button-exit-action) * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page, run-networking-cbt-page, run-other-services-cbt-page, run-network-management-page) * gnu/installer/newt/timezone.scm (run-timezone-page) * gnu/installer/newt/user.scm (run-user-page) * gnu/installer/newt/welcome.scm (run-menu-page) * gnu/installer/newt/wifi.scm (run-wifi-page): Use the 'installer-step prompt to abort. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>