about.diff

QGIS' about box also doesn't have that information. - Jürgen Fischer, 2010-06-12 12:06 PM

Download (671 Bytes)

View differences:

src/app/qgisapp.cpp (working copy)
2387 2387
    QString versionString = tr( "You are using QGIS version %1 built against code revision %2." )
2388 2388
                            .arg( QGis::QGIS_VERSION )
2389 2389
                            .arg( QGis::QGIS_SVN_VERSION );
2390

  
2391
    versionString += tr( "\nThis copy of QGIS has been built with GDAL/OGR %1." ).arg( GDAL_RELEASE_NAME );
2392

  
2390 2393
#ifdef HAVE_POSTGRESQL
2391 2394
    versionString += tr( "\nThis copy of QGIS has been built with PostgreSQL support (%1)." ).arg( PG_VERSION );
2392 2395
#else