libmms library doesn't work on Mac OS

Bug #218518 reported by Randolph Fritz
2
Affects Status Importance Assigned to Milestone
libmms
Won't Fix
Undecided
Unassigned

Bug Description

The code in libmms.py makes assumptions about the form of a dll name that aren't platform independent. Unified diff of fix:

--- libmms.py.old 2008-04-15 22:25:18.000000000 -0700
+++ libmms.py 2008-04-16 22:08:14.000000000 -0700
@@ -22,8 +22,9 @@
 """

 from ctypes import *
+from ctypes import util

-libmms = cdll.LoadLibrary("libmms.so.0")
+libmms = cdll.LoadLibrary(util.find_library("libmms"))

 # opening and closing the stream
 libmms.mmsx_connect.argtypes = [c_void_p, c_void_p, c_char_p, c_int]

Revision history for this message
Soren Hansen (soren) wrote :

Thanks for helping make libmms better! I've found myself unable to give libmms the love and care it needs, so I've passed maintainership over to Hans de Goede who has chosen to maintain the project on SourceForge instead of Launchpad. As such, I'm closing this bug. I encourage you to file this bug on the libmms bug tracker on SourceForge instead:

    https://sourceforge.net/tracker/?group_id=101989&atid=630607

Changed in libmms:
status: New → Won't Fix
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.