Changeset 5510
- Timestamp:
- 06/21/07 20:25:09 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/gis/django/contrib/gis/gdal/libgdal.py
r5478 r5510 8 8 elif os.name == 'posix': 9 9 platform = os.uname()[0] 10 if platform == 'Linux':11 # Linux shared library10 if platform in ('Linux', 'SunOS'): 11 # Linux or Solaris shared library 12 12 lib_name = 'libgdal.so' 13 13 elif platform == 'Darwin': django/branches/gis/django/contrib/gis/geos/GEOSGeometry.py
r5474 r5510 73 73 elif os.name == 'posix': 74 74 platform = os.uname()[0] # Using os.uname() 75 if platform == 'Linux':76 # Linux shared library75 if platform in ('Linux', 'SunOS'): 76 # Linux or Solaris shared library 77 77 lib_name = 'libgeos_c.so' 78 78 elif platform == 'Darwin':
