|
From: Patrik J. <pa...@uc...> - 2008-02-19 20:01:57
|
Hi Michael, (it would have been easier to see your question if you had described the problem before pasting the very long build output... ;-) It appears the problem is > ../blitz/bzconfig.h:7:34: error: blitz/apple/bzconfig.h: No such file or > directory If you look in bzconfig.h, it looks for __APPLE__ and then appears to conclude that you are using the IBM xlc compiler for Darwin, which you are not. I seem to remember having this problem on Tiger last year, and I think simply changing the order of the ifs so you check for __GNUC__ first (which is what you are using) before __APPLE__ should make it work. cheers, /Patrik |