aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Bullock <postlude@users.sourceforge.net>2012-10-09 18:34:37 +0000
committerJamie Bullock <postlude@users.sourceforge.net>2012-10-09 18:34:37 +0000
commit62d4a23e2bae5e1204c07981b5a6aebea9ac6e1e (patch)
treeba2eab0e8d41cb25b2f3d67fc05a19049ffbb556
parent2d7a0230f6872efa58d924a44b1cbf1d9825ad81 (diff)
- include stdbool for jsearch.c
- README update svn path=/trunk/externals/postlude/; revision=16368
-rw-r--r--pluginhost~/README.txt10
-rw-r--r--pluginhost~/jsearch.c1
2 files changed, 8 insertions, 3 deletions
diff --git a/pluginhost~/README.txt b/pluginhost~/README.txt
index aab7983..e81fb10 100644
--- a/pluginhost~/README.txt
+++ b/pluginhost~/README.txt
@@ -6,7 +6,7 @@ This directory (pluginhost) contains sourcecode and possibly binaries for a plug
LADSPA: http://www.ladspa.org/
DSSI: http://dssi.sourceforge.net/
-The functionality of the external is demonstrated in in the help patch (pluginhost/doc/pluginhost~-help.pd).
+The functionality of the external is demonstrated in in the help patch (pluginhost/pluginhost~-help.pd).
Requirements
------------
@@ -27,12 +27,16 @@ From the same directory as the makefile type:
make
make install (as root)
+If compiling on recent versions of OS X, but you are using a 32-bit Pd, you may need to type:
+
+make FAT_FLAGS="-m32"
+
Once compiled the binary file and help file should be placed in directories that are included in Pure Data's search path.
License
-------
-All files included in the pluginhost/src/ directory, and all binary files (if included) are licensed under the GNU GPL Version 2 (see gpl.txt for details).
+All files included in the pluginhost~ directory, and all binary files (if included) are licensed under the GNU GPL Version 2 (see LICENSE.txt for details).
-All files included in the pluginhost/include/ directory are licensed under the GNU Lesser General Public License (see lesser.txt for details).
+All files included in the pluginhost~/include/ directory are licensed under the GNU Lesser General Public License (LGPL).
diff --git a/pluginhost~/jsearch.c b/pluginhost~/jsearch.c
index 5d69b1b..8d1d80c 100644
--- a/pluginhost~/jsearch.c
+++ b/pluginhost~/jsearch.c
@@ -13,6 +13,7 @@
#include <dlfcn.h>
#include <stdio.h>
#include <stdlib.h>
+#include <stdbool.h>
#include <string.h>
#include <sys/types.h>
#include <unistd.h>