Skip to content

Commit

Permalink
Make linking to qtsql conditional on OS
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7172 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Aug 30, 2007
1 parent 75fae6f commit 8c6c2d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/configure.py.in
Expand Up @@ -10,9 +10,10 @@ python_path = src_path + '/python'
gdal_inc_dir = '@GDAL_INCLUDE_DIR@'
geos_inc_dir = '@GEOS_INCLUDE_DIR@'

qt_libs = ["QtCore","QtGui","QtNetwork","QtSql","QtSvg","QtXml"]
qt_libs = ["QtCore","QtGui","QtNetwork","QtSvg","QtXml"]
if sys.platform == 'darwin':
qt_libs.append("Qt3Support")
qt_libs.append("QtSql")

# create paths for temporary files if don't exist
if not os.path.isdir("./core"):
Expand Down

0 comments on commit 8c6c2d0

Please sign in to comment.