aboutsummaryrefslogtreecommitdiff
path: root/popup/makefile
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-03-19 16:33:38 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2009-03-19 16:33:38 +0000
commit48eabac3272eefbb60982430d764f68a8774f016 (patch)
tree158251879671293237db248b67e7759507b11bb8 /popup/makefile
parent6cf3b5ec3cc8b854fe24ecd8eeff2e094106913d (diff)
fixed crasher bug with 0.42:
the problem is that popup_vis() is called with a glist that has no gl_editor IF the [popup] is in a gop. the fix is to check whether there is an editor, and if there is none, call "canvas_create_editor(glist)" svn path=/trunk/externals/bbogart/; revision=10874
Diffstat (limited to 'popup/makefile')
-rw-r--r--popup/makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/popup/makefile b/popup/makefile
index b70f5c3..42f69b6 100644
--- a/popup/makefile
+++ b/popup/makefile
@@ -59,8 +59,7 @@ LINUXINCLUDE = -I../../src -I../../../pd/src
.c.pd_linux:
cc $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.o -c $*.c
- ld -export_dynamic -shared -o $*.pd_linux $*.o -lc -lm
- strip --strip-unneeded $*.pd_linux
+ ld -shared -o $*.pd_linux $*.o -lc -lm
rm $*.o
# ----------------------- Mac OSX -----------------------