1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
diff -u src-org/analogue.cpp src/analogue.cpp
--- src-org/analogue.cpp Thu Oct 28 19:22:56 2004
+++ src/analogue.cpp Thu Oct 28 19:24:43 2004
@@ -24,7 +24,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include <stdlib.h>
#include "cmt.h"
diff -u src-org/canyondelay.cpp src/canyondelay.cpp
--- src-org/canyondelay.cpp Thu Oct 28 19:22:56 2004
+++ src/canyondelay.cpp Thu Oct 28 19:24:43 2004
@@ -25,7 +25,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include "cmt.h"
Common subdirectories: src-org/freeverb and src/freeverb
diff -u src-org/lofi.cpp src/lofi.cpp
--- src-org/lofi.cpp Thu Oct 28 19:22:56 2004
+++ src/lofi.cpp Thu Oct 28 19:24:43 2004
@@ -24,7 +24,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include <stdlib.h>
#include "cmt.h"
diff -u src-org/makefile src/makefile
--- src-org/makefile Thu Oct 28 19:22:56 2004
+++ src/makefile Thu Oct 28 19:28:16 2004
@@ -68,7 +68,7 @@
targets: $(PLUGIN_LIB)
$(PLUGIN_LIB): $(PLUGIN_OBJECTS)
- $(CXX) -shared \
+ $(CXX) -dynamiclib -ldl \
-o $(PLUGIN_LIB) \
$(PLUGIN_OBJECTS)
--- src-org/phasemod.cpp Thu Oct 28 19:22:56 2004
+++ src/phasemod.cpp Thu Oct 28 19:24:43 2004
@@ -24,7 +24,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include <stdlib.h>
#include "cmt.h"
diff -u src-org/syndrum.cpp src/syndrum.cpp
--- src-org/syndrum.cpp Thu Oct 28 19:22:56 2004
+++ src/syndrum.cpp Thu Oct 28 19:24:43 2004
@@ -24,7 +24,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include "cmt.h"
diff -u src-org/vcf303.cpp src/vcf303.cpp
--- src-org/vcf303.cpp Thu Oct 28 19:22:56 2004
+++ src/vcf303.cpp Thu Oct 28 19:24:43 2004
@@ -26,7 +26,7 @@
/*****************************************************************************/
-#include <malloc.h>
+#include <unistd.h>
#include <math.h>
#include "cmt.h"
|