summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPeter D'Hoye <peter.dhoye@gmail.com>2009-05-23 06:26:31 +0000
committerPeter D'Hoye <peter.dhoye@gmail.com>2009-05-23 06:26:31 +0000
commit9be554cb6a2a7c9ca0a4aea5c6b1967b76347f91 (patch)
tree1a95c02cdfbed5c01fd0e02be29e6de909f6c438 /apps
parent655ae81cf8e1d8a098a136c07839149cae23d4e8 (diff)
downloadrockbox-9be554cb6a2a7c9ca0a4aea5c6b1967b76347f91.tar.gz
rockbox-9be554cb6a2a7c9ca0a4aea5c6b1967b76347f91.zip
Patch by Wincent Balin of PDa plugin: update readme and disable shared libraries
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21050 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/pdbox/PDa/src/s_loader.c2
-rw-r--r--apps/plugins/pdbox/README.rockbox14
2 files changed, 12 insertions, 4 deletions
diff --git a/apps/plugins/pdbox/PDa/src/s_loader.c b/apps/plugins/pdbox/PDa/src/s_loader.c
index 83a59f3556..78be948b93 100644
--- a/apps/plugins/pdbox/PDa/src/s_loader.c
+++ b/apps/plugins/pdbox/PDa/src/s_loader.c
@@ -48,7 +48,7 @@ void class_set_extern_dir(t_symbol *s);
#ifdef STATIC
int sys_load_lib(char *dirname, char *classname)
-{ return 1;}
+{ return 0;}
#else
int sys_load_lib(char *dirname, char *classname)
{
diff --git a/apps/plugins/pdbox/README.rockbox b/apps/plugins/pdbox/README.rockbox
index 634413b965..47a2abf19f 100644
--- a/apps/plugins/pdbox/README.rockbox
+++ b/apps/plugins/pdbox/README.rockbox
@@ -6,11 +6,19 @@ This directory structure contains the Pure Data Anywhere implementation
LICENSING INFORMATION
PDa is licensed under the Standard Improved BSD License and is copyrighted
-Miller Puckette and others
+by Miller Puckette and others
IMPORT DETAILS
-PDbox is based on PDa 0.6 which is based on pd-0.37-4 (date?)
+PDbox is based on PDa 0.6 which is based on pd-0.37-4 (around the end of 2004).
-[more info from Wincent Balin goes here]
+Additionally a minor patch was applied to the file s_loader.c to prevent
+loading of shared libraries, which would not work in Rockbox anyway.
+
+The changes applied fall into three categories: networking, file operations
+and others. As Rockbox does not have a networking, a lightweight messaging
+system was implemented for communication. File operations differ under
+Rockbox from those under desktop operating systems a little. Most, if not all
+changes are recognizable by their using of the ROCKBOX preprocessor variable
+(i.e. #ifdef ROCKBOX, #endif /* ROCKBOX */).