picolisp: Remove patch no longer needed

This commit is contained in:
Fredrik Fornwall 2016-06-21 16:58:30 -04:00
parent 5b612323c6
commit ad1c9172fa
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
diff -u -r ../picoLisp/src/main.c ./src/main.c
--- ../picoLisp/src/main.c 2015-11-24 02:39:50.000000000 -0500
+++ ./src/main.c 2015-11-26 18:07:24.794312532 -0500
@@ -834,8 +834,10 @@
strcpy(buf + n + 4 + strlen(nm), ".dll");
#endif
}
- if (!(h = dlopen(buf, RTLD_LAZY | RTLD_GLOBAL)) || !(h = dlsym(h,p)))
+ if (!(h = dlopen(buf, RTLD_LAZY | RTLD_GLOBAL)) || !(h = dlsym(h,p))) {
+ fprintf(stderr, "dlopen/dlsym problem: %s\n", dlerror());
return NO;
+ }
val(x) = box(num(h));
}
return YES;