View Single Post
Old January 3rd, 2009   #2
lwhitmore
Just Give Me the Beans!
 
Join Date: Mar 2006
Beans: 46
Ubuntu 8.10 Intrepid Ibex
Re: Compiling XaraLX on Intrepid

Figured out the problem after a lot of red herrings....

Apparently something changed in a new version of the compiler, which means that the <algorithm> library needs to be manually included.

Code:
bitmapgriddropdown.cpp:299: error: ‘find_if’ was not declared in this scope
... find_if is part of the <algorithm> library.

So I just added
Code:
#include <algorithm>
to the includes section in bitmapgriddropdown.cpp and voila... it compiled.

I also found out that FTBFS is a relevant acronym = fails to build from source.
lwhitmore is offline   Reply With Quote