diff options
| author | Justin Bronn <jbronn@gmail.com> | 2011-07-04 04:06:11 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2011-07-04 04:06:11 +0000 |
| commit | a34e67031a09e69a50d748e5b493edbd6effb1ff (patch) | |
| tree | 16bdee02d5abf557335ac81572a595fc2b06e7c8 | |
| parent | 6b31300057a3c2239dceab0b9f51e5e31132265b (diff) | |
Fixed #16007 -- Give POSIX platforms the same courtesy as NT for GDAL 1.8. Thanks, Leo.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16500 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/gis/gdal/libgdal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/gdal/libgdal.py b/django/contrib/gis/gdal/libgdal.py index 256ddb24ed..dda9c64eb1 100644 --- a/django/contrib/gis/gdal/libgdal.py +++ b/django/contrib/gis/gdal/libgdal.py @@ -17,7 +17,7 @@ elif os.name == 'nt': lib_names = ['gdal18', 'gdal17', 'gdal16', 'gdal15'] elif os.name == 'posix': # *NIX library names. - lib_names = ['gdal', 'GDAL', 'gdal1.7.0', 'gdal1.6.0', 'gdal1.5.0', 'gdal1.4.0'] + lib_names = ['gdal', 'GDAL', 'gdal1.8.0', 'gdal1.7.0', 'gdal1.6.0', 'gdal1.5.0', 'gdal1.4.0'] else: raise OGRException('Unsupported OS "%s"' % os.name) |
