aboutsummaryrefslogtreecommitdiff
path: root/pd
diff options
context:
space:
mode:
authorMiller Puckette <millerpuckette@users.sourceforge.net>2005-12-02 04:58:24 +0000
committerMiller Puckette <millerpuckette@users.sourceforge.net>2005-12-02 04:58:24 +0000
commitfd14b14379cf592d3806385814b8ed2a86336f02 (patch)
treeac923ddced383167a4d5761f9124f6e702c289c7 /pd
parent08596048cf2b13cfba6d7fabe5ad5604875d9a45 (diff)
Memory leak patch, plus change to x_connective.c to fix a bug
svn path=/trunk/; revision=4103
Diffstat (limited to 'pd')
-rw-r--r--pd/doc/1.manual/x5.htm8
-rw-r--r--pd/doc/7.stuff/tools/load-meter.pd4
-rw-r--r--pd/src/makefile2
-rw-r--r--pd/src/s_main.c2
4 files changed, 12 insertions, 4 deletions
diff --git a/pd/doc/1.manual/x5.htm b/pd/doc/1.manual/x5.htm
index b18da2a6..7aec1cf9 100644
--- a/pd/doc/1.manual/x5.htm
+++ b/pd/doc/1.manual/x5.htm
@@ -20,6 +20,14 @@
<H3> <A name="s2"> 5.1. release notes </A> </H3>
+<P> ------------------ 0.39.2 --------------------------
+
+<P> Bug fixes: memory leak in OSX version; problem printing numbers as symbols.
+
+<P> ------------------ 0.39.1 --------------------------
+
+<P> Bug fixes: compatibility problems with older version of TK
+
<P> ------------------ 0.39.0 --------------------------
<P> At the source level, "regular" arrays and arrays within data structures are
diff --git a/pd/doc/7.stuff/tools/load-meter.pd b/pd/doc/7.stuff/tools/load-meter.pd
index 6a73b5a4..35c5a5e9 100644
--- a/pd/doc/7.stuff/tools/load-meter.pd
+++ b/pd/doc/7.stuff/tools/load-meter.pd
@@ -1,10 +1,10 @@
#N canvas 161 261 299 317 12;
-#X floatatom 118 256;
+#X floatatom 118 256 0 0 0 0 - - -;
#X obj 118 168 cputime;
#X obj 118 28 loadbang;
#X obj 118 112 metro 1000;
#X msg 118 56 1;
-#X floatatom 118 84;
+#X floatatom 118 84 0 0 0 0 - - -;
#X obj 118 140 t b b;
#X obj 118 228 * 0.1;
#X obj 118 197 int;
diff --git a/pd/src/makefile b/pd/src/makefile
index 2ad50698..433bbb6c 100644
--- a/pd/src/makefile
+++ b/pd/src/makefile
@@ -19,7 +19,7 @@ GLIB = -ltk8.4 -ltcl8.4
LDFLAGS = -Wl,-export-dynamic -lasound
LIB = -ldl -lpthread -lasound
-OPT_CFLAGS = -g
+OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer
WARN_CFLAGS = -Wall -W -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
ARCH_CFLAGS = -DPD
diff --git a/pd/src/s_main.c b/pd/src/s_main.c
index ba3c5e70..b722d960 100644
--- a/pd/src/s_main.c
+++ b/pd/src/s_main.c
@@ -2,7 +2,7 @@
* For information on usage and redistribution, and for a DISCLAIMER OF ALL
* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
-char pd_version[] = "Pd version 0.39-1\n";
+char pd_version[] = "Pd version 0.39-2\n";
char pd_compiletime[] = __TIME__;
char pd_compiledate[] = __DATE__;