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.

278 lines
7.8 KiB

  1. --- ./artsc/artscbackend.cc.orig 2008-06-11 00:49:37.000000000 +0200
  2. +++ ./artsc/artscbackend.cc 2008-06-11 00:49:44.000000000 +0200
  3. @@ -31,6 +31,7 @@
  4. #include <queue>
  5. #include <stdio.h>
  6. +#include <string.h>
  7. #include <unistd.h>
  8. #include <fcntl.h>
  9. #include <math.h>
  10. --- ./flow/audioio.cc.orig 2008-06-11 00:30:59.000000000 +0200
  11. +++ ./flow/audioio.cc 2008-06-11 00:31:05.000000000 +0200
  12. @@ -24,6 +24,7 @@
  13. #include <map>
  14. #include <list>
  15. #include <assert.h>
  16. +#include <string.h>
  17. using namespace Arts;
  18. using namespace std;
  19. --- ./flow/audioionull.cc.orig 2008-06-11 00:32:06.000000000 +0200
  20. +++ ./flow/audioionull.cc 2008-06-11 00:32:12.000000000 +0200
  21. @@ -34,6 +34,7 @@
  22. #include <fcntl.h>
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. +#include <string.h>
  26. #include <unistd.h>
  27. #include <iostream>
  28. #include <algorithm>
  29. --- ./flow/audioiooss.cc.orig 2008-06-11 00:31:27.000000000 +0200
  30. +++ ./flow/audioiooss.cc 2008-06-11 00:31:37.000000000 +0200
  31. @@ -51,6 +51,7 @@
  32. #include <fcntl.h>
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35. +#include <string.h>
  36. #include <unistd.h>
  37. #include <iostream>
  38. #include <algorithm>
  39. --- ./flow/audioioossthreaded.cc.orig 2008-06-11 00:41:40.000000000 +0200
  40. +++ ./flow/audioioossthreaded.cc 2008-06-11 00:41:48.000000000 +0200
  41. @@ -52,6 +52,7 @@
  42. #include <fcntl.h>
  43. #include <stdio.h>
  44. #include <stdlib.h>
  45. +#include <string.h>
  46. #include <unistd.h>
  47. #include <iostream>
  48. #include <algorithm>
  49. --- ./flow/audiosubsys.cc.orig 2008-06-11 00:24:30.000000000 +0200
  50. +++ ./flow/audiosubsys.cc 2008-06-11 00:24:39.000000000 +0200
  51. @@ -41,6 +41,7 @@
  52. #include <errno.h>
  53. #include <fcntl.h>
  54. #include <stdio.h>
  55. +#include <string.h>
  56. #include <stdlib.h>
  57. #include <unistd.h>
  58. #include <iostream>
  59. --- ./flow/bytestreamtoaudio_impl.cc.orig 2008-06-11 00:28:31.000000000 +0200
  60. +++ ./flow/bytestreamtoaudio_impl.cc 2008-06-11 00:28:39.000000000 +0200
  61. @@ -24,6 +24,8 @@
  62. #include "stdsynthmodule.h"
  63. #include "resample.h"
  64. +#include <string.h>
  65. +
  66. using namespace std;
  67. using namespace Arts;
  68. --- ./flow/datahandle_impl.cc.orig 2008-06-11 00:42:09.000000000 +0200
  69. +++ ./flow/datahandle_impl.cc 2008-06-11 00:42:19.000000000 +0200
  70. @@ -29,6 +29,8 @@
  71. #include <algorithm>
  72. #include <gslpp/datahandle.h>
  73. +#include <string.h>
  74. +
  75. using namespace std;
  76. namespace Arts {
  77. --- ./flow/pipebuffer.cc.orig 2008-06-11 00:25:10.000000000 +0200
  78. +++ ./flow/pipebuffer.cc 2008-06-11 00:25:16.000000000 +0200
  79. @@ -22,6 +22,7 @@
  80. #include "pipebuffer.h"
  81. #include <assert.h>
  82. +#include <string.h>
  83. using namespace std;
  84. using namespace Arts;
  85. --- ./flow/stereovolumecontrol_impl.cc.orig 2008-06-11 00:29:16.000000000 +0200
  86. +++ ./flow/stereovolumecontrol_impl.cc 2008-06-11 00:29:23.000000000 +0200
  87. @@ -25,6 +25,7 @@
  88. #include "stdsynthmodule.h"
  89. #include "flowsystem.h"
  90. #include <debug.h>
  91. +#include <string.h>
  92. using namespace Arts;
  93. --- ./flow/synth_play_wav_impl.cc.orig 2008-06-11 00:26:51.000000000 +0200
  94. +++ ./flow/synth_play_wav_impl.cc 2008-06-11 00:27:08.000000000 +0200
  95. @@ -29,6 +29,9 @@
  96. #include "convert.h"
  97. #include <stdio.h>
  98. #include <iostream>
  99. +#include <stdlib.h>
  100. +#include <string.h>
  101. +#include <limits.h>
  102. extern "C" {
  103. /* Some versions of libaudiofile seem to lack the extern "C" declaration,
  104. --- ./flow/synth_record_impl.cc.orig 2008-06-11 00:30:18.000000000 +0200
  105. +++ ./flow/synth_record_impl.cc 2008-06-11 00:30:25.000000000 +0200
  106. @@ -31,6 +31,7 @@
  107. #include "stdsynthmodule.h"
  108. #include <stdio.h>
  109. #include <iostream>
  110. +#include <string.h>
  111. #undef DEBUG_WAVEFORM
  112. #ifdef DEBUG_WAVEFORM
  113. --- ./mcop/dispatcher.cc.orig 2008-06-11 00:04:03.000000000 +0200
  114. +++ ./mcop/dispatcher.cc 2008-06-11 00:04:14.000000000 +0200
  115. @@ -38,6 +38,8 @@
  116. #include <sys/stat.h>
  117. #include <stdio.h>
  118. #include <signal.h>
  119. +#include <string.h>
  120. +#include <stdlib.h>
  121. #include <errno.h>
  122. #include <iostream>
  123. --- ./mcop/mcoputils.cc.orig 2008-06-11 00:12:29.000000000 +0200
  124. +++ ./mcop/mcoputils.cc 2008-06-11 00:12:41.000000000 +0200
  125. @@ -32,6 +32,8 @@
  126. #include <errno.h>
  127. #include <config.h>
  128. #include <ctype.h>
  129. +#include <string.h>
  130. +#include <stdlib.h>
  131. #include <stdio.h>
  132. #include <map>
  133. --- ./mcop/object.cc.orig 2008-06-11 00:05:11.000000000 +0200
  134. +++ ./mcop/object.cc 2008-06-11 00:05:19.000000000 +0200
  135. @@ -28,6 +28,7 @@
  136. #include "debug.h"
  137. #include "anyref.h"
  138. #include <stdio.h>
  139. +#include <stdlib.h>
  140. #include <iostream>
  141. using namespace std;
  142. --- ./mcop/tcpconnection.cc.orig 2008-06-11 00:06:13.000000000 +0200
  143. +++ ./mcop/tcpconnection.cc 2008-06-11 00:06:20.000000000 +0200
  144. @@ -25,6 +25,7 @@
  145. #include <sys/types.h>
  146. #include <sys/socket.h>
  147. #include <stdio.h>
  148. +#include <stdlib.h>
  149. #define queue cqueue
  150. #include <netdb.h>
  151. #undef queue
  152. --- ./mcop/trader_impl.cc.orig 2008-06-11 00:17:28.000000000 +0200
  153. +++ ./mcop/trader_impl.cc 2008-06-11 00:17:36.000000000 +0200
  154. @@ -29,6 +29,7 @@
  155. #include <sys/stat.h>
  156. #include <unistd.h>
  157. #include <dirent.h>
  158. +#include <string.h>
  159. using namespace Arts;
  160. using namespace std;
  161. --- ./mcop/unixconnection.cc.orig 2008-06-11 00:06:51.000000000 +0200
  162. +++ ./mcop/unixconnection.cc 2008-06-11 00:06:57.000000000 +0200
  163. @@ -26,6 +26,7 @@
  164. #include <sys/types.h>
  165. #include <sys/socket.h>
  166. #include <stdio.h>
  167. +#include <stdlib.h>
  168. #include <sys/un.h>
  169. #include <errno.h>
  170. --- ./soundserver/artscat.cc.orig 2008-06-11 00:47:13.000000000 +0200
  171. +++ ./soundserver/artscat.cc 2008-06-11 00:47:19.000000000 +0200
  172. @@ -28,6 +28,7 @@
  173. #include "artsversion.h"
  174. #include <stdio.h>
  175. +#include <stdlib.h>
  176. #include <unistd.h>
  177. #include <fcntl.h>
  178. #include <iostream>
  179. --- ./soundserver/artsd.cc.orig 2008-06-11 00:45:29.000000000 +0200
  180. +++ ./soundserver/artsd.cc 2008-06-11 00:45:36.000000000 +0200
  181. @@ -29,6 +29,7 @@
  182. #include <math.h>
  183. #include <iostream>
  184. #include <stdio.h>
  185. +#include <stdlib.h>
  186. #include "soundserver.h"
  187. #include "audiosubsys.h"
  188. #include "audioio.h"
  189. --- ./soundserver/artsplay.cc.orig 2008-06-11 00:46:40.000000000 +0200
  190. +++ ./soundserver/artsplay.cc 2008-06-11 00:46:46.000000000 +0200
  191. @@ -31,6 +31,7 @@
  192. #include <unistd.h>
  193. #include <vector>
  194. #include <string>
  195. +#include <string.h>
  196. #include <iostream>
  197. using namespace std;
  198. --- ./soundserver/artsrec.cc.orig 2008-06-11 00:48:59.000000000 +0200
  199. +++ ./soundserver/artsrec.cc 2008-06-11 00:49:05.000000000 +0200
  200. @@ -31,6 +31,7 @@
  201. #include "debug.h"
  202. #include <stdio.h>
  203. +#include <stdlib.h>
  204. #include <unistd.h>
  205. #include <fcntl.h>
  206. #include <iostream>
  207. --- ./soundserver/artsshell.cc.orig 2008-06-11 00:48:13.000000000 +0200
  208. +++ ./soundserver/artsshell.cc 2008-06-11 00:48:25.000000000 +0200
  209. @@ -121,6 +121,8 @@
  210. #include "artsversion.h"
  211. #include "tradercheck.h"
  212. #include <stdio.h>
  213. +#include <stdlib.h>
  214. +#include <string.h>
  215. #include <math.h>
  216. bool quiet = false;
  217. --- ./soundserver/crashhandler.h.orig 2008-06-11 00:45:13.000000000 +0200
  218. +++ ./soundserver/crashhandler.h 2008-06-11 00:45:19.000000000 +0200
  219. @@ -25,6 +25,7 @@
  220. #define __ARTS_CRASHHANDLER_H
  221. #include <string>
  222. +#include <string.h>
  223. namespace Arts {
  224. --- ./soundserver/fileinputstream_impl.cc.orig 2008-06-11 00:43:42.000000000 +0200
  225. +++ ./soundserver/fileinputstream_impl.cc 2008-06-11 00:43:48.000000000 +0200
  226. @@ -27,6 +27,7 @@
  227. #include <unistd.h>
  228. #include <sys/mman.h>
  229. #include <stdio.h>
  230. +#include <string.h>
  231. #include <unistd.h>
  232. #include <fcntl.h>
  233. #include <iostream>
  234. --- ./soundserver/soundserverstartup_impl.cc.orig 2008-06-11 00:45:59.000000000 +0200
  235. +++ ./soundserver/soundserverstartup_impl.cc 2008-06-11 00:46:06.000000000 +0200
  236. @@ -23,6 +23,7 @@
  237. #include "debug.h"
  238. #include "soundserverstartup_impl.h"
  239. #include <sys/time.h>
  240. +#include <stdlib.h>
  241. #include <time.h>
  242. using namespace Arts;
  243. --- ./soundserver/soundserverv2_impl.cc.orig 2008-06-11 00:44:26.000000000 +0200
  244. +++ ./soundserver/soundserverv2_impl.cc 2008-06-11 00:44:37.000000000 +0200
  245. @@ -33,6 +33,8 @@
  246. #include "soundserverv2_impl.h"
  247. #include "artsversion.h"
  248. #include <stdio.h>
  249. +#include <stdlib.h>
  250. +#include <string.h>
  251. #include <sys/types.h>
  252. #include <sys/stat.h>
  253. #include <unistd.h>