![]() |
2009-12-16
, 16:46
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#2
|
Fully motivated I want to join the club of developers, and start programming applications for the N900. But somehow I'm already stuck with the "hello world" example.
Maybe first what I've done so far:
1. Tried the maemo SDK virtual image on my windows machine, followed the instructions and code on the forum.nokia.com website (http://www.forum.nokia.com/info/sw.n...h_Maemo_5.html)
Somehow I wasn't able to build the application in this VM, so I decided to set up a laptop with Ubuntu and all the development tools
2. Installed Ubuntu, scratchbox, maemo SDK and ESBox following this guide:
http://wiki.maemo.org/Documentation/...l_Installation
3. Followed the example again, and ended up at the same point. Following is the error message I get (in VM and the Ubuntu machine):
I was told (http://talk.maemo.org/showthread.php?t=36987&page=4) that the missing libraries should be in the scratchbox environment, but how can I check if they are already there or not? As this happened to me in VM as well, could there be anything wrong with the code in the example?Code:configure: error: Package requirements (hildonmm libosso) were not met: No package 'hildonmm' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables HELLOWORLD_CFLAGS and HELLOWORLD_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. *** exited with code 1
Hope that somebody can help me...
![]() |
2009-12-16
, 16:57
|
|
Posts: 41 |
Thanked: 8 times |
Joined on Nov 2009
@ Zürich, Switzerland
|
#3
|
Reading package lists... Done Building dependency tree... Done E: Couldn't find package libhildonmm-dev
![]() |
2009-12-16
, 17:00
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#4
|
Tried it, but I get the following error message:
So I think this might no longer be up to date (?).Code:Reading package lists... Done Building dependency tree... Done E: Couldn't find package libhildonmm-dev
Again I tried it with and without scratchbox.
![]() |
2009-12-16
, 17:20
|
|
Posts: 696 |
Thanked: 1,012 times |
Joined on Mar 2006
@ Asturies, Spain
|
#5
|
![]() |
2009-12-16
, 17:47
|
Posts: 2,102 |
Thanked: 1,309 times |
Joined on Sep 2006
|
#6
|
And then, apt-get update, and apt-get install libhildonmm-dev
![]() |
2009-12-16
, 18:05
|
|
Posts: 41 |
Thanked: 8 times |
Joined on Nov 2009
@ Zürich, Switzerland
|
#7
|
![]() |
2009-12-16
, 18:09
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#8
|
Might want to tack a "fakeroot" to the start of those two commands. E.g.:
fakeroot apt-get update
fakeroot apt-get install libhildonmm-dev
![]() |
2009-12-16
, 19:32
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#9
|
Maybe first what I've done so far:
1. Tried the maemo SDK virtual image on my windows machine, followed the instructions and code on the forum.nokia.com website (http://www.forum.nokia.com/info/sw.n...h_Maemo_5.html)
Somehow I wasn't able to build the application in this VM, so I decided to set up a laptop with Ubuntu and all the development tools
2. Installed Ubuntu, scratchbox, maemo SDK and ESBox following this guide:
http://wiki.maemo.org/Documentation/...l_Installation
3. Followed the example again, and ended up at the same point. Following is the error message I get (in VM and the Ubuntu machine):
Hope that somebody can help me...