On Mac OS X Mountain Lion, using vanilla Python
Python 2.7.2 (default, Jun 20 2012, 16:23:33) [GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin Type "help", "copyright", "credits" or "license" for more information.
latest Postgres.app and Django 1.4.2, doing this:
from django.contrib.gis.gdal.libgdal import lgdal
lgdal.OGR_DS_CreateLayer
# <_FuncPtr object at 0x10aa1a050>
lgdal.OGR_DS_CreateLayer()
# Segmentation fault: 11
The arguments to OGR_DS_CreateLayer do not seem to matter (valid or invalid, it all results in a segmentation fault).
I would really like to avoid installing osgeo and stuff, and see no reason why this wouldn't work in Django. Anyone that can help me?