summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pdbox')
-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);
48 48
49#ifdef STATIC 49#ifdef STATIC
50int sys_load_lib(char *dirname, char *classname) 50int sys_load_lib(char *dirname, char *classname)
51{ return 1;} 51{ return 0;}
52#else 52#else
53int sys_load_lib(char *dirname, char *classname) 53int sys_load_lib(char *dirname, char *classname)
54{ 54{
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
6LICENSING INFORMATION 6LICENSING INFORMATION
7 7
8PDa is licensed under the Standard Improved BSD License and is copyrighted 8PDa is licensed under the Standard Improved BSD License and is copyrighted
9Miller Puckette and others 9by Miller Puckette and others
10 10
11IMPORT DETAILS 11IMPORT DETAILS
12 12
13PDbox is based on PDa 0.6 which is based on pd-0.37-4 (date?) 13PDbox is based on PDa 0.6 which is based on pd-0.37-4 (around the end of 2004).
14 14
15[more info from Wincent Balin goes here] 15Additionally a minor patch was applied to the file s_loader.c to prevent
16loading of shared libraries, which would not work in Rockbox anyway.
17
18The changes applied fall into three categories: networking, file operations
19and others. As Rockbox does not have a networking, a lightweight messaging
20system was implemented for communication. File operations differ under
21Rockbox from those under desktop operating systems a little. Most, if not all
22changes are recognizable by their using of the ROCKBOX preprocessor variable
23(i.e. #ifdef ROCKBOX, #endif /* ROCKBOX */).
16 24