There's an silly error in one of header files that prevents gdal-1.3.1 from building properly. In file gdal-1.3.1/work/gdal-1.3.1/ogr/ogrsf_frmts/ili/ili1reader.h line 53 looks like: virtual OGRLayer *GetLayer( int ) = NULL; I guess someone wanted to declare pure virtual method (which has no body in the abstract class) as other method in this class. It must be remembered that such method declaration should be ended with = 0; no matter what is the returned type of the function. Therefore '= NULL;' is an error that is exposed by gcc-4.1.x. So properly defined pure virtual method should look like that: virtual OGRLayer *GetLayer( int ) = 0; This error is not exposed by gcc-3.4.x used by Gentoo hardened profile. Reproducible: Always Steps to Reproduce: 1. emerge gdal 2. 3. Actual Results: compilation failure Expected Results: compilation completion
This one just creates more errors for every one fixed, at least with gcc 4.3.2, so I would recommend using a newer version of gdal (which also requires some newer deps) if you're using a newer gcc, toolchain, etc. We'll see about getting a newer version of gdal stablized...