Changeset: b83e76e38849 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b83e76e38849
Modified Files:
monetdb5/mal/mal_linker.mx
Branch: default
Log Message:
Merged from Mar2011
diffs (26 lines):
diff --git a/monetdb5/mal/mal_linker.mx b/monetdb5/mal/mal_linker.mx
--- a/monetdb5/mal/mal_linker.mx
+++ b/monetdb5/mal/mal_linker.mx
@@ -265,19 +265,19 @@
snprintf(nme, MAXPATHLEN, "%s%c%s_%s%s",
mod_path, DIR_SEP, SO_PREFIX, s, SO_EXT);
#endif
- handle = mdlopen(nme, mode);
+ handle = dlopen(nme, mode);
/* try .so */
if (handle == NULL && strcmp(SO_EXT, ".so") != 0) {
snprintf(nme, MAXPATHLEN, "%s%c%s_%s.so",
mod_path, DIR_SEP, SO_PREFIX, s);
- handle = mdlopen(nme, mode);
+ handle = dlopen(nme, mode);
}
#ifdef __APPLE__
/* try .bundle */
if (handle == NULL && strcmp(SO_EXT, ".bundle") != 0) {
snprintf(nme, MAXPATHLEN, "%s%c%s_%s.bundle",
mod_path, DIR_SEP, SO_PREFIX, s);
- handle = mdlopen(nme, mode);
+ handle = dlopen(nme, mode);
}
#endif
if (handle != NULL) {
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list