![]() |
2008-04-01
, 13:18
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#2
|
![]() |
2008-04-01
, 14:33
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#3
|
You should have include path to hildon-1 and link the lib too.
-I/usr/include/hildon-1
-lhildon-1
or something in these lines
![]() |
2008-04-03
, 22:54
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#4
|
![]() |
2008-04-04
, 11:08
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#5
|
You mean in the code, where I put the include statements for hildon-program I should also put those lines?
![]() |
2008-04-05
, 15:26
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#6
|
No, you add those to the compile line in the Makefile (I presume you have one):
e.g.
gcc -o your-application -I/usr/include/hildon-1 your-files.c -lhildon-1
(i.e. you tell the compiler/preprocessor to add /usr/include/hildon-1 to the search path for header files, and to link with libhildon-1.so during the linking stage).
Depending on how your Makefile is set up the above example may have to be split out to different parts of the Makefile, but I hope you get the idea.
![]() |
2008-04-05
, 15:40
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#7
|
![]() |
2008-04-05
, 15:47
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#8
|
![]() |
2008-04-05
, 15:59
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#10
|
You should add the include dirs to SOMETHING_CFLAGS and libs to SOMETHING_LIBS in the Makefile in the dir, where the source in question is located. Thats just a temp solution though, since the next configure will replace it.
In file included from /usr/include/gtk-2.0/gdk/gdkx.h:33,
from /usr/include/hildon-1/hildon/hildon-window.h:33,
from /usr/include/hildon-1/hildon/hildon-program.h:29,
from bookmarks.c:20:
/usr/include/X11/Xlib.h:3578: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3583: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3596: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3609: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3614: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3846: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3850: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3862: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3890: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3894: error: syntax error before "_X_SENTINEL"
/usr/include/X11/Xlib.h:3934: error: syntax error before "_X_SENTINEL"
make[3]: *** [bookmarks.o] Error 1
make: *** [all] Error 2
So I stripped out all my changes, and compiled it again to no errors.
It turns out, if I add this one line:
#include <hildon/hildon-program.h>
and try to compile I get that string of errors up there with no other changes being made.
Is there something hinkey in my SDK or in scratchbox or possibly even on the host distro (Debian Etch)?
I am at a loss, but I certainly can not continue where like this. Does anyone know what might be causing this or how to remedy it?
Thanks,
-John