Cross-Platform build scripts for audio plugins
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.

416 lines
22KB

  1. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9: .stamp_applied_01_xplat-compat.patch
  2. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/Makefile.single caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/Makefile.single
  3. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/Makefile.single 2020-12-05 21:01:30.000000000 +0000
  4. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/Makefile.single 2020-12-05 23:43:09.000000000 +0000
  5. @@ -60,6 +60,6 @@
  6. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  7. .depend: $(SOURCES)
  8. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  9. + touch .depend
  10. -include .depend
  11. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/basics.h caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/basics.h
  12. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/basics.h 2020-12-05 21:01:30.000000000 +0000
  13. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/basics.h 2020-12-05 23:35:14.000000000 +0000
  14. @@ -38,6 +38,7 @@
  15. #define _ISOC99_SOURCE 1
  16. #define _ISOC9X_SOURCE 1
  17. +#include <stdint.h>
  18. #include <stdlib.h>
  19. #include <string.h>
  20. @@ -49,14 +50,14 @@
  21. #include "ladspa.h"
  22. -typedef __int8_t int8;
  23. -typedef __uint8_t uint8;
  24. -typedef __int16_t int16;
  25. -typedef __uint16_t uint16;
  26. -typedef __int32_t int32;
  27. -typedef __uint32_t uint32;
  28. -typedef __int64_t int64;
  29. -typedef __uint64_t uint64;
  30. +typedef int8_t int8;
  31. +typedef uint8_t uint8;
  32. +typedef int16_t int16;
  33. +typedef uint16_t uint16;
  34. +typedef int32_t int32;
  35. +typedef uint32_t uint32;
  36. +typedef int64_t int64;
  37. +typedef uint64_t uint64;
  38. #define MIN_GAIN 1e-6 /* -120 dB */
  39. /* smallest non-denormal 32 bit IEEE float is 1.18e-38 */
  40. @@ -124,7 +125,7 @@
  41. return value;
  42. }
  43. -static inline float frandom() { return (float) random() / (float) RAND_MAX; }
  44. +static inline float frandom() { return (float) rand() / (float) RAND_MAX; }
  45. /* NB: also true if 0 */
  46. inline bool
  47. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/dsp/v4f.h caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/dsp/v4f.h
  48. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/dsp/v4f.h 2020-12-05 21:01:30.000000000 +0000
  49. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/dsp/v4f.h 2020-12-05 23:37:44.000000000 +0000
  50. @@ -71,6 +71,13 @@
  51. return f[0]+f[1]+f[2]+f[3];
  52. }
  53. +#ifdef __clang__
  54. +inline float __builtin_cosf2(float v) { return __builtin_cosf(v); }
  55. +inline float __builtin_sinf2(float v) { return __builtin_sinf(v); }
  56. +#define __builtin_cosf __builtin_cosf2
  57. +#define __builtin_sinf __builtin_sinf2
  58. +#endif
  59. +
  60. /* mapping a float to float function [e.g. sinf() e.a.] to a vector */
  61. typedef float (*f2f_fn) (float f);
  62. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/dsp/v4f_IIR2.h caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/dsp/v4f_IIR2.h
  63. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/dsp/v4f_IIR2.h 2020-12-05 21:01:30.000000000 +0000
  64. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/dsp/v4f_IIR2.h 2020-12-05 23:38:47.000000000 +0000
  65. @@ -32,9 +32,13 @@
  66. namespace DSP {
  67. -#if defined(__APPLE__) || defined(__FreeBSD__)
  68. +#if defined(__APPLE__) || defined(__FreeBSD__) || defined(_WIN32)
  69. +#ifdef __clang__
  70. inline float exp10f(float f) {return __exp10f(f);}
  71. +#else
  72. +inline float exp10f(float f) {return __builtin_exp10f(f);}
  73. +#endif
  74. #endif
  75. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-AmpVTS.lv2: .depend
  76. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-AmpVTS.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AmpVTS.lv2/Makefile
  77. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-AmpVTS.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  78. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AmpVTS.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  79. @@ -60,6 +60,6 @@
  80. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  81. .depend: $(SOURCES)
  82. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  83. + touch .depend
  84. -include .depend
  85. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AmpVTS.lv2: Makefile-e
  86. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-AutoFilter.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AutoFilter.lv2/Makefile
  87. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-AutoFilter.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  88. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AutoFilter.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  89. @@ -60,6 +60,6 @@
  90. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  91. .depend: $(SOURCES)
  92. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  93. + touch .depend
  94. -include .depend
  95. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-AutoFilter.lv2: Makefile-e
  96. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CEO.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CEO.lv2/Makefile
  97. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CEO.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  98. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CEO.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  99. @@ -60,6 +60,6 @@
  100. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  101. .depend: $(SOURCES)
  102. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  103. + touch .depend
  104. -include .depend
  105. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CEO.lv2: Makefile-e
  106. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CabinetIII.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIII.lv2/Makefile
  107. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CabinetIII.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  108. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIII.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  109. @@ -60,6 +60,6 @@
  110. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  111. .depend: $(SOURCES)
  112. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  113. + touch .depend
  114. -include .depend
  115. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIII.lv2: Makefile-e
  116. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CabinetIV.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIV.lv2/Makefile
  117. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CabinetIV.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  118. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIV.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  119. @@ -60,6 +60,6 @@
  120. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  121. .depend: $(SOURCES)
  122. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  123. + touch .depend
  124. -include .depend
  125. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CabinetIV.lv2: Makefile-e
  126. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-ChorusI.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ChorusI.lv2/Makefile
  127. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-ChorusI.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  128. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ChorusI.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  129. @@ -60,6 +60,6 @@
  130. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  131. .depend: $(SOURCES)
  132. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  133. + touch .depend
  134. -include .depend
  135. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ChorusI.lv2: Makefile-e
  136. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Click.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Click.lv2/Makefile
  137. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Click.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  138. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Click.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  139. @@ -60,6 +60,6 @@
  140. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  141. .depend: $(SOURCES)
  142. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  143. + touch .depend
  144. -include .depend
  145. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Click.lv2: Makefile-e
  146. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Compress.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Compress.lv2/Makefile
  147. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Compress.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  148. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Compress.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  149. @@ -60,6 +60,6 @@
  150. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  151. .depend: $(SOURCES)
  152. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  153. + touch .depend
  154. -include .depend
  155. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Compress.lv2: Makefile-e
  156. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CompressX2.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CompressX2.lv2/Makefile
  157. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-CompressX2.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  158. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CompressX2.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  159. @@ -60,6 +60,6 @@
  160. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  161. .depend: $(SOURCES)
  162. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  163. + touch .depend
  164. -include .depend
  165. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-CompressX2.lv2: Makefile-e
  166. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq10.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10.lv2/Makefile
  167. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq10.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  168. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  169. @@ -60,6 +60,6 @@
  170. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  171. .depend: $(SOURCES)
  172. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  173. + touch .depend
  174. -include .depend
  175. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10.lv2: Makefile-e
  176. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq10X2.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10X2.lv2/Makefile
  177. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq10X2.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  178. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10X2.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  179. @@ -60,6 +60,6 @@
  180. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  181. .depend: $(SOURCES)
  182. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  183. + touch .depend
  184. -include .depend
  185. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq10X2.lv2: Makefile-e
  186. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq4p.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq4p.lv2/Makefile
  187. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Eq4p.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  188. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq4p.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  189. @@ -60,6 +60,6 @@
  190. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  191. .depend: $(SOURCES)
  192. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  193. + touch .depend
  194. -include .depend
  195. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Eq4p.lv2: Makefile-e
  196. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-EqFA4p.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-EqFA4p.lv2/Makefile
  197. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-EqFA4p.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  198. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-EqFA4p.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  199. @@ -60,6 +60,6 @@
  200. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  201. .depend: $(SOURCES)
  202. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  203. + touch .depend
  204. -include .depend
  205. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-EqFA4p.lv2: Makefile-e
  206. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Fractal.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Fractal.lv2/Makefile
  207. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Fractal.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  208. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Fractal.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  209. @@ -60,6 +60,6 @@
  210. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  211. .depend: $(SOURCES)
  212. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  213. + touch .depend
  214. -include .depend
  215. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Fractal.lv2: Makefile-e
  216. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Narrower.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Narrower.lv2/Makefile
  217. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Narrower.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  218. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Narrower.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  219. @@ -60,6 +60,6 @@
  220. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  221. .depend: $(SOURCES)
  222. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  223. + touch .depend
  224. -include .depend
  225. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Narrower.lv2: Makefile-e
  226. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Noisegate.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Noisegate.lv2/Makefile
  227. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Noisegate.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  228. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Noisegate.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  229. @@ -60,6 +60,6 @@
  230. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  231. .depend: $(SOURCES)
  232. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  233. + touch .depend
  234. -include .depend
  235. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Noisegate.lv2: Makefile-e
  236. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-PhaserII.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PhaserII.lv2/Makefile
  237. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-PhaserII.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  238. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PhaserII.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  239. @@ -60,6 +60,6 @@
  240. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  241. .depend: $(SOURCES)
  242. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  243. + touch .depend
  244. -include .depend
  245. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PhaserII.lv2: Makefile-e
  246. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Plate.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Plate.lv2/Makefile
  247. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Plate.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  248. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Plate.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  249. @@ -60,6 +60,6 @@
  250. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  251. .depend: $(SOURCES)
  252. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  253. + touch .depend
  254. -include .depend
  255. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Plate.lv2: Makefile-e
  256. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-PlateX2.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PlateX2.lv2/Makefile
  257. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-PlateX2.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  258. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PlateX2.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  259. @@ -60,6 +60,6 @@
  260. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  261. .depend: $(SOURCES)
  262. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  263. + touch .depend
  264. -include .depend
  265. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-PlateX2.lv2: Makefile-e
  266. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Saturate.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Saturate.lv2/Makefile
  267. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Saturate.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  268. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Saturate.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  269. @@ -60,6 +60,6 @@
  270. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  271. .depend: $(SOURCES)
  272. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  273. + touch .depend
  274. -include .depend
  275. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Saturate.lv2: Makefile-e
  276. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Scape.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Scape.lv2/Makefile
  277. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Scape.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  278. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Scape.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  279. @@ -60,6 +60,6 @@
  280. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  281. .depend: $(SOURCES)
  282. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  283. + touch .depend
  284. -include .depend
  285. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Scape.lv2: Makefile-e
  286. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Sin.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Sin.lv2/Makefile
  287. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Sin.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  288. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Sin.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  289. @@ -60,6 +60,6 @@
  290. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  291. .depend: $(SOURCES)
  292. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  293. + touch .depend
  294. -include .depend
  295. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Sin.lv2: Makefile-e
  296. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Spice.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Spice.lv2/Makefile
  297. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Spice.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  298. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Spice.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  299. @@ -60,6 +60,6 @@
  300. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  301. .depend: $(SOURCES)
  302. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  303. + touch .depend
  304. -include .depend
  305. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Spice.lv2: Makefile-e
  306. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-SpiceX2.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-SpiceX2.lv2/Makefile
  307. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-SpiceX2.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  308. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-SpiceX2.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  309. @@ -60,6 +60,6 @@
  310. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  311. .depend: $(SOURCES)
  312. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  313. + touch .depend
  314. -include .depend
  315. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-SpiceX2.lv2: Makefile-e
  316. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-ToneStack.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ToneStack.lv2/Makefile
  317. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-ToneStack.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  318. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ToneStack.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  319. @@ -60,6 +60,6 @@
  320. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  321. .depend: $(SOURCES)
  322. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  323. + touch .depend
  324. -include .depend
  325. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-ToneStack.lv2: Makefile-e
  326. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-White.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-White.lv2/Makefile
  327. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-White.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  328. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-White.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  329. @@ -60,6 +60,6 @@
  330. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  331. .depend: $(SOURCES)
  332. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  333. + touch .depend
  334. -include .depend
  335. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-White.lv2: Makefile-e
  336. diff -U3 -r caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Wider.lv2/Makefile caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Wider.lv2/Makefile
  337. --- caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9/plugins/mod-caps-Wider.lv2/Makefile 2020-12-05 21:01:30.000000000 +0000
  338. +++ caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Wider.lv2/Makefile 2020-12-05 23:47:47.000000000 +0000
  339. @@ -60,6 +60,6 @@
  340. rm -f $(OBJECTS) $(PLUG).so *.s .depend
  341. .depend: $(SOURCES)
  342. - $(CXX) -MM $(CXXFLAGS) $(SOURCES) > .depend
  343. + touch .depend
  344. -include .depend
  345. Only in caps-lv2-5d52a0c6e8863c058c2aab2dea9f901a90d96eb9.fix/plugins/mod-caps-Wider.lv2: Makefile-e