mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123 lines
3.6 KiB

  1. --- ./arts/builder/structure.cpp.orig 2008-06-13 11:24:39.000000000 +0200
  2. +++ ./arts/builder/structure.cpp 2008-06-13 11:24:46.000000000 +0200
  3. @@ -23,6 +23,7 @@
  4. #include "soundserver.h"
  5. #include "kartsserver.h"
  6. #include <stdio.h>
  7. +#include <stdlib.h>
  8. #include <iostream>
  9. #include <fstream>
  10. #include <kdebug.h>
  11. --- ./arts/modules/effects/synth_stereo_fir_equalizer_impl.cc.orig 2008-06-13 09:26:09.000000000 +0200
  12. +++ ./arts/modules/effects/synth_stereo_fir_equalizer_impl.cc 2008-06-13 09:26:16.000000000 +0200
  13. @@ -29,6 +29,7 @@
  14. #include "artsmoduleseffects.h"
  15. #include <stdio.h>
  16. +#include <stdlib.h>
  17. #include <kglobal.h>
  18. #include <klocale.h>
  19. --- ./arts/modules/synth/synth_capture_wav_impl.cc.orig 2008-06-13 08:58:12.000000000 +0200
  20. +++ ./arts/modules/synth/synth_capture_wav_impl.cc 2008-06-13 08:58:20.000000000 +0200
  21. @@ -25,6 +25,8 @@
  22. #include "stdsynthmodule.h"
  23. #include "debug.h"
  24. #include <fcntl.h>
  25. +#include <string.h>
  26. +#include <stdlib.h>
  27. using namespace std;
  28. namespace Arts {
  29. --- ./arts/modules/synth/synth_midi_test_impl.cc.orig 2008-06-13 08:58:53.000000000 +0200
  30. +++ ./arts/modules/synth/synth_midi_test_impl.cc 2008-06-13 08:59:00.000000000 +0200
  31. @@ -9,6 +9,7 @@
  32. #include "audiosubsys.h"
  33. #include <fstream>
  34. #include <math.h>
  35. +#include <stdlib.h>
  36. using namespace Arts;
  37. using namespace std;
  38. --- ./arts/modules/synth/synth_noise_impl.cc.orig 2008-06-13 08:55:08.000000000 +0200
  39. +++ ./arts/modules/synth/synth_noise_impl.cc 2008-06-13 08:55:15.000000000 +0200
  40. @@ -23,6 +23,8 @@
  41. #include "artsmodulessynth.h"
  42. #include "stdsynthmodule.h"
  43. +#include <stdlib.h>
  44. +
  45. using namespace Arts;
  46. namespace Arts {
  47. --- ./arts/modules/synth/synth_osc_impl.cc.orig 2008-06-13 08:56:25.000000000 +0200
  48. +++ ./arts/modules/synth/synth_osc_impl.cc 2008-06-13 08:56:31.000000000 +0200
  49. @@ -27,6 +27,7 @@
  50. #include <gsl/gslsignal.h>
  51. #include <math.h>
  52. +#include <string.h>
  53. using namespace Arts;
  54. --- ./arts/modules/synth/synth_play_pat_impl.cc.orig 2008-06-13 08:57:29.000000000 +0200
  55. +++ ./arts/modules/synth/synth_play_pat_impl.cc 2008-06-13 08:57:40.000000000 +0200
  56. @@ -24,6 +24,8 @@
  57. #include <sys/stat.h>
  58. #include <stdsynthmodule.h>
  59. #include <unistd.h>
  60. +#include <string.h>
  61. +#include <stdlib.h>
  62. #include <math.h>
  63. #include <debug.h>
  64. #include <cache.h>
  65. --- ./arts/modules/synth/synth_sequence_freq_impl.cc.orig 2008-06-13 09:04:38.000000000 +0200
  66. +++ ./arts/modules/synth/synth_sequence_freq_impl.cc 2008-06-13 09:04:52.000000000 +0200
  67. @@ -18,6 +18,7 @@
  68. */
  69. #include <stdio.h>
  70. +#include <stdlib.h>
  71. #include "artsmodulessynth.h"
  72. #include "stdsynthmodule.h"
  73. #include <debug.h>
  74. --- ./arts/modules/synth/synth_sequence_impl.cc.orig 2008-06-13 09:00:54.000000000 +0200
  75. +++ ./arts/modules/synth/synth_sequence_impl.cc 2008-06-13 09:01:03.000000000 +0200
  76. @@ -26,6 +26,8 @@
  77. */
  78. #include <stdio.h>
  79. +#include <stdlib.h>
  80. +#include <string.h>
  81. #include "artsmodulessynth.h"
  82. #include "stdsynthmodule.h"
  83. --- ./arts/runtime/artsbuilderloader_impl.cc.orig 2008-06-13 08:25:32.000000000 +0200
  84. +++ ./arts/runtime/artsbuilderloader_impl.cc 2008-06-13 08:25:39.000000000 +0200
  85. @@ -26,6 +26,7 @@
  86. #include <sys/types.h>
  87. #include <sys/stat.h>
  88. #include <stdio.h>
  89. +#include <stdlib.h>
  90. #include <unistd.h>
  91. #include <dirent.h>
  92. #include <set>
  93. --- ./mpeglib/example/yaf/yafvorbis/vorbis_control.cpp.orig 2008-06-13 18:34:16.000000000 +0200
  94. +++ ./mpeglib/example/yaf/yafvorbis/vorbis_control.cpp 2008-06-13 18:34:29.000000000 +0200
  95. @@ -19,7 +19,7 @@
  96. -#include <iostream.h>
  97. +#include <iostream>
  98. #include <stdio.h>
  99. #include <stdlib.h>
  100. #include <math.h>
  101. @@ -33,6 +33,7 @@
  102. #include <getopt.h>
  103. #endif
  104. +using namespace std;