Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 232902 - sci-libs/gdal-1.3.1 cannot be built due to silly error in one of header files
Summary: sci-libs/gdal-1.3.1 cannot be built due to silly error in one of header files
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Sci-geo Project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-07-25 09:18 UTC by Paul Osmialowski
Modified: 2008-10-11 06:05 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Osmialowski 2008-07-25 09:18:51 UTC
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
Comment 1 Steve Arnold archtester gentoo-dev 2008-10-11 06:05:45 UTC
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...