Changeset: 5dd0b4672a97 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5dd0b4672a97
Modified Files:
        gdk/gdk_posix.c
Branch: default
Log Message:

partial revert, ie macos doesn't like passing the library name to dlopen when we
need a linked library.


diffs (13 lines):

diff --git a/gdk/gdk_posix.c b/gdk/gdk_posix.c
--- a/gdk/gdk_posix.c
+++ b/gdk/gdk_posix.c
@@ -674,7 +674,8 @@ MT_path_absolute(const char *pathname)
 void *
 mdlopen(const char *library, int mode)
 {
-       return dlopen(library, mode);
+       (void)library; /* Not used because of MacOs not handling dlopen on 
linked library */
+       return dlopen(NULL, mode);
 }
 
 #else /* WIN32 native */
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to