Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 118767 - IceWM 1.2.23 fails to build with gcc4.1
Summary: IceWM 1.2.23 fails to build with gcc4.1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GCC Porting (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Disenchanted (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-12 04:46 UTC by Konrad Campowsky
Modified: 2006-01-18 04:53 UTC (History)
1 user (show)

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


Attachments
modified ebuild to make IceWM build with gcc 4.1 (icewm-1.2.23.ebuild,2.30 KB, text/plain)
2006-01-12 04:49 UTC, Konrad Campowsky
Details
patch to make IceWM build with gcc 4.1 (icewm-1.2.23.ypixbuf.h.patch,210 bytes, patch)
2006-01-12 04:50 UTC, Konrad Campowsky
Details | Diff
patch to make IceWM build with gcc 4.1 (icewm-1.2.23.ywindow.h.patch,240 bytes, patch)
2006-01-12 04:50 UTC, Konrad Campowsky
Details | Diff
patch to make IceWM build with gcc 4.1 (icewm-1.2.23.wmframe.h.patch,211 bytes, patch)
2006-01-12 04:50 UTC, Konrad Campowsky
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Konrad Campowsky 2006-01-12 04:46:04 UTC
When building IceWM, gcc 4.1 complains about some
constructs of the following form:

class X {
void X::someFunc();
};

while it should of course just read:

class X {
void someFunc();
};

I made a patchset and an updated ebuild,
which changes just that and
nothing of the actual code 
and thus should be quite safe to use.

As soon as I find out how, I shall post them.

I dont know if this problem applies to prior versions.
Comment 1 Konrad Campowsky 2006-01-12 04:49:32 UTC
Created attachment 76897 [details]
modified ebuild to make IceWM build with gcc 4.1
Comment 2 Konrad Campowsky 2006-01-12 04:50:00 UTC
Created attachment 76898 [details, diff]
patch to make IceWM build with gcc 4.1
Comment 3 Konrad Campowsky 2006-01-12 04:50:19 UTC
Created attachment 76899 [details, diff]
patch to make IceWM build with gcc 4.1
Comment 4 Konrad Campowsky 2006-01-12 04:50:43 UTC
Created attachment 76900 [details, diff]
patch to make IceWM build with gcc 4.1
Comment 5 Mark Loeser (RETIRED) gentoo-dev 2006-01-13 13:27:53 UTC
Patches look fine.  Next time please give us all the patches as one file, and give us a diff of your ebuild so we can just see the changes.

Thanks :)
Comment 6 Hanno Böck gentoo-dev 2006-01-18 04:53:01 UTC
I've just fixed this short before you reported it.