Author: jbronn
Date: 2009-06-12 12:19:19 -0500 (Fri, 12 Jun 2009)
New Revision: 10986

Modified:
   django/branches/releases/1.0.X/django/contrib/gis/gdal/libgdal.py
Log:
[1.0.X] Fixed support for GDAL 1.6 on Windows.  Thanks to jtia for spotting 
this.

Backport of r10985 from trunk.


Modified: django/branches/releases/1.0.X/django/contrib/gis/gdal/libgdal.py
===================================================================
--- django/branches/releases/1.0.X/django/contrib/gis/gdal/libgdal.py   
2009-06-12 17:16:49 UTC (rev 10985)
+++ django/branches/releases/1.0.X/django/contrib/gis/gdal/libgdal.py   
2009-06-12 17:19:19 UTC (rev 10986)
@@ -14,7 +14,7 @@
     lib_names = None
 elif os.name == 'nt':
     # Windows NT shared library
-    lib_names = ['gdal15']
+    lib_names = ['gdal16', 'gdal15']
 elif os.name == 'posix':
     # *NIX library names.
     lib_names = ['gdal', 'GDAL', 'gdal1.6.0', 'gdal1.5.0', 'gdal1.4.0']


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to