Commit d5115033 authored by Robert McGibbon's avatar Robert McGibbon
Browse files

unused variables

parent bb628e2e
...@@ -14,15 +14,7 @@ It also tries to load any plugin modules it can find. ...@@ -14,15 +14,7 @@ It also tries to load any plugin modules it can find.
__author__ = "Randall J. Radmer" __author__ = "Randall J. Radmer"
import os, sys, glob, os.path import os, sys, glob, os.path
if sys.platform == "win32": if sys.platform not in ['win32', 'darwin']:
libPrefix=""
libExt="dll"
elif sys.platform == 'darwin':
libPrefix="lib"
libExt="dylib"
else:
libPrefix="lib"
libExt="so"
# The following is an evil incantation that is needed to permit # The following is an evil incantation that is needed to permit
# the POSIX "dlopen" function to work. I do not understand # the POSIX "dlopen" function to work. I do not understand
# it. If a better solution is known, please forward to the # it. If a better solution is known, please forward to the
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment