Opened 16 years ago

Last modified 16 years ago

#9008 closed

'lib_name' is not defined error on Windows when `GDAL_LIBRARY_PATH` is set — at Version 2

Reported by: kitlycol@… Owned by: jbronn
Component: GIS Version: 1.0
Severity: Keywords: lib_name GDAL_LIBRARY_PATH gdal gis
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by jbronn)

43 if os.name == 'nt':
44    from ctypes import WinDLL
45    lwingdal = WinDLL(lib_name)


'lib_name' is not defined

Change History (3)

comment:1 by anonymous, 16 years ago

43 if os.name == 'nt':
44 from ctypes import WinDLL
45 lwingdal = WinDLL(lib_name)

'lib_name' is not defined

comment:2 by jbronn, 16 years ago

Description: modified (diff)
Keywords: GDAL_LIBRARY_PATH gdal gis added
Owner: changed from nobody to jbronn
Summary: libgdal/__init__.py name 'lib_name' is not defined on windows'lib_name' is not defined error on Windows when `GDAL_LIBRARY_PATH` is set
Triage Stage: UnreviewedAccepted

by jbronn, 16 years ago

Attachment: gdal_win32_lib_path.diff added
Note: See TracTickets for help on using tickets.
Back to Top