When you use autogen, it tells you which development libraries are needed to compile. In your case it said: > ... (libglade, glib, gconf, and libxml)
So you will need to install devel packages for each of these, usually very similiar to <pkg>-devel. Finding out exactly which ones to install usually involves: $ yum search <pkg> devel | grep <pkg> (that's what I do at least) Here's the list you need to install: libglade2-devel glib2-devel GConf-dbus-devel libxml2-devel ...and I know you'll also need "file-devel" unless it is already installed Specifically: $ su <pswd = "moblin"> # yum install libglade2-devel glib2-devel GConf-dbus-devel libxml2-devel file-devel # exit $ ./autogen.sh I'll add that tip to the project page. I wish autogen would suggest what to do when failures occur. That would be nice. Good luck. Bob -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Wan, Shuang Sent: Saturday, March 28, 2009 8:36 PM To: Clark Snowdall Cc: [email protected] Subject: Re: [Moblin Dev] Projgen Hi Clark, Using moblin2 as develop OS, suggest you try to install moblin-netbook-core-developer-alpha2-20090311.img, download link: http://repo.moblin.org/moblin/releases/test/alpha2/images/ The developer image has installed many of package related to software development by default. If you not sure which packages you need to install, refer bellow link suggested by Marcus Mae http://repo.moblin.org/moblin/development/core/ia32/os/i586/ Another choice to match the packages need to install, you can use wildcard matching in yum search <package name*> It will list the matched package, and then you can use yum install it. Best regards Wan Shuang -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Clark Snowdall Sent: 2009年3月29日 9:19 To: [email protected] Subject: [Moblin Dev] Projgen Hello, I'm new here so please forgive if this is a bit moronic. I'm having trouble building projgen on the Moblin V2 environment. I'm new to autogen so I'm probably missing something very easy. When I do: ./autogen.sh It complains about missing package requirements (libglade, glib, gconf, and libxml) and then proceeds to suggest that I modify PROJGEN_CFLAGS and PROJGEN_LIBS to get it to work. Am I missing a setting here? What do I need to alter PROJGEN_CFLAGS and PROJGEN_LIBS to? Thanks, Snowdall _______________________________________________ Moblin dev Mailing List [email protected] To manage or unsubscribe from this mailing list visit: https://lists.moblin.org/mailman/listinfo/dev or your user account on http://moblin.org once logged in. For more information on the Moblin Developer Mailing lists visit: http://moblin.org/community/mailing-lists _______________________________________________ Moblin dev Mailing List [email protected] To manage or unsubscribe from this mailing list visit: https://lists.moblin.org/mailman/listinfo/dev or your user account on http://moblin.org once logged in. For more information on the Moblin Developer Mailing lists visit: http://moblin.org/community/mailing-lists _______________________________________________ Moblin dev Mailing List [email protected] To manage or unsubscribe from this mailing list visit: https://lists.moblin.org/mailman/listinfo/dev or your user account on http://moblin.org once logged in. For more information on the Moblin Developer Mailing lists visit: http://moblin.org/community/mailing-lists
