<div class="gmail_quote">On 22 November 2011 09:27, Tomasz Makarewicz <span dir="ltr">&lt;<a href="mailto:makson96@gmail.com">makson96@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hi,<br>
I have downloaded latest source (from Sat, 19 Nov 2011 03:29:53 -0500)<br>
and after running &#39;cmake&#39; command on 64 bit Ubuntu 10.04 I got<br>
following error:<br>
<br>
CMake Error at CMakeLists.txt:165 (message):<br>
 We don&#39;t have a prebuilt SDL for this platform.<br>
<br>
It is strange since previous source was building fine. So I compare<br>
CMakeList.txt from this source and previous one and find out, that if<br>
in lines 151 I change:<br>
<br>
if (NOT SDL_FOUND OR NOT SDLMAIN_FOUND)<br>
<br>
to<br>
<br>
if (NOT SDL_FOUND)# OR NOT SDLMAIN_FOUND)<br>
<br>
and in line 167:<br>
<br>
endif (NOT SDL_FOUND OR NOT SDLMAIN_FOUND)<br>
<br>
to<br>
<br>
endif (NOT SDL_FOUND)# OR NOT SDLMAIN_FOUND)<br>
<br>
it builds fine now.<br>
<br>
Hope that this will help.<br>
Best regards,<br>
<span class="HOEnZb"><font color="#888888">Tomasz Makarewicz<br>
<br>
--<br>
<a href="http://ubuntu.pl" target="_blank">http://ubuntu.pl</a><br>
_______________________________________________<br>
aquaria mailing list<br>
<a href="mailto:aquaria@icculus.org">aquaria@icculus.org</a><br>
<a href="http://icculus.org/mailman/listinfo/aquaria" target="_blank">http://icculus.org/mailman/listinfo/aquaria</a><br>
</font></span></blockquote></div><br><br>Oh, thanks for this ! I stumbled upon the same build error last night, but I didn&#39;t have the time to track it down. I don&#39;t have access to the code right now, but I think maybe this OR should be an AND ?<br>