Author: jbronn
Date: 2009-06-12 12:16:49 -0500 (Fri, 12 Jun 2009)
New Revision: 10985

Modified:
   django/trunk/django/contrib/gis/gdal/libgdal.py
Log:
Fixed support for GDAL 1.6 on Windows.  Thanks to jtia for spotting this.


Modified: django/trunk/django/contrib/gis/gdal/libgdal.py
===================================================================
--- django/trunk/django/contrib/gis/gdal/libgdal.py     2009-06-12 14:09:36 UTC 
(rev 10984)
+++ django/trunk/django/contrib/gis/gdal/libgdal.py     2009-06-12 17:16:49 UTC 
(rev 10985)
@@ -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