aboutsummaryrefslogtreecommitdiff
path: root/hexloader.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-05-18 07:38:36 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-05-18 07:38:36 +0000
commita2a341eb529250dd65b9f666ae490d19d2fd1fb4 (patch)
tree0e84447d893f8695137d263d8ab7d9b370969e3c /hexloader.c
parent9e74bbe8216da8ab9f72095724633e360f387321 (diff)
added faq with an explanation of the patch-loading bug;
disabled patch-loading by default (it doesn't work anyhow); use the pd within this directory to compile svn path=/trunk/externals/loaders/hexloader/; revision=9836
Diffstat (limited to 'hexloader.c')
-rw-r--r--hexloader.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/hexloader.c b/hexloader.c
index 9e81f73..ef7cd1b 100644
--- a/hexloader.c
+++ b/hexloader.c
@@ -42,7 +42,15 @@
#endif
-#define HEXLOADER_PATCHES
+/* for now hexloading abstractions does not work very well,
+ * as it chokes when the hexloaded abstractions has nested abstractions
+ *
+ * if you really want to enable hexloading patches,
+ * do so via the Makefile by defining HEXLOADER_PATCHES
+ *
+ */
+//#define HEXLOADER_PATCHES
+
#ifdef HEXLOADER_PATCHES
void canvas_popabstraction(t_canvas *x);
@@ -562,6 +570,7 @@ static int hexloader_loadfile(char*pathname, char*filename, namelist_t*altnames)
sprintf(fullfile, "%s/%s", pathname, filename);
while(altname) {
+ verbose(2, "hexloader trying %s (%s)", fullfile, altname->name);
if(hexloader_doload(fullfile, altname->name))
return 1;