Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - nbilling

Pages: [1]
1
DF Modding / Re: Stonesense - Official thread - New version out, 2.1
« on: September 09, 2010, 01:23:34 am »
Hello,

After a whole day trying to compile dfhack and allegro (with success, apparently), I tried to compile Stonesense. On that attempt I did:
Code: [Select]
svn checkout http://stonesense.googlecode.com/svn/trunk stonesense
cd stonesense/build
cmake .. -DCMAKE_BUILD_TYPE:string=Release
make

Until 'make' everything goes well, but then:

Same problem for me, but in Ubuntu. The dfhack problem you have there I fixed by installing dfhack from the git repo (in the stonesense "ON COMPILING.txt" file). The problem with allegro is a complete mystery to me. I have the latest allegro from svn, the two files (allegro5/allegro_ttf.h and allegro5/allegro_native_dialog.h) definitely do exist, and most puzzling of all is that the compiler can see the other .h files in the very same folder. It only complains about allegro_ttf.h and allegro_native_dialog.h.

edit:
Code: [Select]
#include <allegro5/allegro.h>
#include <allegro5/allegro_primitives.h>
#include <allegro5/allegro_font.h>
#include <allegro5/allegro_ttf.h>
#include <allegro5/allegro_image.h>
#include <allegro5/allegro_native_dialog.h>
#include <allegro5/allegro_opengl.h>
#include <allegro5/utf8.h>
this is inside common.h, the lines it doesn't like are the 3rd and 5th there, why can it find all the rest of the files and not those ones, when they are all there!?

Pages: [1]