yangqiaosheng / libcitygml

Automatically exported from code.google.com/p/libcitygml
GNU Lesser General Public License v2.1
0 stars 0 forks source link

missing check for GDAL usage in transform.h #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

in transform.h the "ogrsf_frmts.h" is included without checking for GDAL 
inclusion.

Solution:

replace 
#include "ogrsf_frmts.h"

against:

ifdef USE_GDAL
#include "ogrsf_frmts.h"
#endif

Original issue reported on code.google.com by jan.kli...@gmail.com on 12 Aug 2010 at 12:35

GoogleCodeExporter commented 9 years ago
Thanks a lot. I have just fixed it!

Original comment by jpouder...@gmail.com on 12 Aug 2010 at 8:12