aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>