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) { log/tests/guix-shell-export-manifest.sh?id=4625519f2c24fb56544ef7fe1737e3edd96127bb'>guix-shell-export-manifest.sh
AgeCommit message (Expand)Author
2022-06-16shell: Fix '--export-manifest' for cached profiles and when '-p' is used....Fixes <https://issues.guix.gnu.org/55521>. * guix/scripts/shell.scm (export-manifest): When computing 'manifest', honor the 'profile key. * tests/guix-shell-export-manifest.sh: Add test. Ludovic Courtès
2022-06-01shell: '--export-manifest -D x -D y' generates a valid manifest....* guix/scripts/shell.scm (manifest->code*): Add missing 'list' in generated 'concatenate-manifests' call. * tests/guix-shell-export-manifest.sh: Add test. Ludovic Courtès
2022-04-08tests: 'guix shell --export-manifest' test no longer needs networking....* tests/guix-shell-export-manifest.sh: Use '--with-input' rather than '--with-latest' as the latter would crash in the absence of network access. Ludovic Courtès
2022-04-04shell: Add '--export-manifest'....* guix/scripts/shell.scm (show-help, %options): Add '--export-manifest'. (manifest-entry-version-prefix, manifest->code*) (export-manifest): New procedures. (guix-shell): Honor '--export-manifest'. * tests/guix-shell-export-manifest.sh: New file. * Makefile.am (SH_TESTS): Add it. * doc/guix.texi (Invoking guix shell): Document '--export-manifest'. (Invoking guix environment): Link to it. (Invoking guix pack): Likewise. Ludovic Courtès