<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ilyeus</title>
	<atom:link href="http://ilyeus.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilyeus.wordpress.com</link>
	<description>Technology, mostly.</description>
	<lastBuildDate>Sun, 27 Jun 2010 05:22:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ilyeus.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ilyeus</title>
		<link>http://ilyeus.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ilyeus.wordpress.com/osd.xml" title="ilyeus" />
	<atom:link rel='hub' href='http://ilyeus.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ecere development environment in Ubuntu 9.10</title>
		<link>http://ilyeus.wordpress.com/2010/03/02/build-ecere-ubuntu910/</link>
		<comments>http://ilyeus.wordpress.com/2010/03/02/build-ecere-ubuntu910/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 06:48:23 +0000</pubDate>
		<dc:creator>redj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[ecere]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Today, you are setting up the Ecere development environment in ubuntu 9.10 in order to learn more about this small package and join the Ecere community as an active contributor. As you prepare for your task, you remember how your grandmother used to tell you that good things come in small packages. &#8230; Just the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ilyeus.wordpress.com&amp;blog=12329219&amp;post=1&amp;subd=ilyeus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today, you are setting up the Ecere development environment in ubuntu 9.10 in order to learn more about this small package and join the Ecere community as an active contributor. As you prepare for your task, you remember how your grandmother used to tell you that good things come in small packages.<br />
&#8230;</p>
<h3>Just the commands:</h3>
<p><code>
<div>
sudo apt-get install zlib1g-dev libpng12-dev libgif-dev libjpeg62-dev libncurses5-dev libfreetype6-dev libfontconfig1-dev libx11-dev libxrender-dev libgl1-mesa-dev libxext-dev<br />
sudo apt-get install upx-ucl<br />
wget http://ecere.com/ecere-sdk-0.44pre1.tar.bz2<br />
tar -xf ecere-sdk-0.44pre1.tar.bz2<br />
cd ecere-sdk-0.44pre1/<br />
make<br />
sudo make install<br />
ide<br />
documentor
</div>
<p></code></p>
<h3>Starting point:</h3>
<p>You recently installed Ubuntu 9.10 and have applied all available updates. Ok, maybe you have an older version of Ubuntu or maybe even some other distribution all together. Just cross your fingers and hope all goes well. Why would it fail anyways.</p>
<h3>Step by step:</h3>
<h4>Step 1 &#8211; Install dependencies of the build process.</h4>
<p>You need a few things in order to successfully compile the Ecere library and all the tools in the Ecere SDK.<br />
<code>
<div>
sudo apt-get install zlib1g-dev libpng12-dev libgif-dev libjpeg62-dev libncurses5-dev libfreetype6-dev libfontconfig1-dev libx11-dev libxrender-dev libgl1-mesa-dev libxext-dev
</div>
<p></code><br />
You don&#8217;t need this but if you don&#8217;t know what it is you might as well have it.<br />
<code>
<div>
sudo apt-get install upx-ucl
</div>
<p></code></p>
<h4>Step 2 &#8211; Download the source code.</h4>
<p>You feel at home in the terminal today so you don&#8217;t need to go to <a href="http://ecere.com/">http://ecere.com/</a> and click on the download button.<br />
<code>
<div>
wget http://ecere.com/ecere-sdk-0.44pre1.tar.bz2
</div>
<p></code></p>
<h4>Step 3 &#8211; Extract the source code.</h4>
<p>You just type another simple command.<br />
<code>
<div>
tar -xf ecere-sdk-0.44pre1.tar.bz2
</div>
<p></code></p>
<h4>Step 4 &#8211; Compile the source code.</h4>
<p>Getting your hands dirty, you&#8217;re starting the build process.<br />
<code>
<div>
cd ecere-sdk-0.44pre1/<br />
make
</div>
<p></code></p>
<h4>Step 5 &#8211; Install the software.</h4>
<p>You&#8217;ve done it, just one last step.<br />
<code>
<div>
sudo make install
</div>
<p></code></p>
<h4>Step 6 &#8211; Enjoy it, learn it.</h4>
<p>You&#8217;re there! You can run the IDE and start working on your coding projects or run Documentor to browse the API of the Ecere SDK.<br />
<code>
<div>
ide<br />
documentor
</div>
<p></code></p>
<h3>Closing notes:</h3>
<p>You take a few minutes to visit <a href="http://ecere.com/forums">http://ecere.com/forums/</a> where the Ecere community lives. Perhaps you even drop by the #ecere channel on the freenode.net IRC network.<br />
Satisfied with your accomplishments and excited about being part of a young community, you go get some rest and dream of coding in eC.</p>
<h3>Commands output:</h3>
<p>Your output may be different.</p>
<h5>command:</h5>
<p><code>
<div>
sudo apt-get install zlib1g-dev libpng12-dev libgif-dev libjpeg62-dev libncurses5-dev libfreetype6-dev libfontconfig1-dev libx11-dev libxrender-dev libgl1-mesa-dev libxext-dev
</div>
<p></code></p>
<h5>printout:</h5>
<p><code>
<div>
Reading package lists... Done<br />
Building dependency tree<br />
Reading state information... Done<br />
The following packages were automatically installed and are no longer required:<br />
linux-headers-2.6.31-14 linux-headers-2.6.31-14-generic<br />
Use 'apt-get autoremove' to remove them.<br />
The following extra packages will be installed:<br />
libexpat1-dev libpthread-stubs0 libpthread-stubs0-dev libxau-dev libxcb1-dev libxdmcp-dev mesa-common-dev x11proto-core-dev<br />
x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev xtrans-dev<br />
The following NEW packages will be installed:<br />
libexpat1-dev libfontconfig1-dev libfreetype6-dev libgif-dev libgl1-mesa-dev libjpeg62-dev libncurses5-dev libpng12-dev<br />
libpthread-stubs0 libpthread-stubs0-dev libx11-dev libxau-dev libxcb1-dev libxdmcp-dev libxext-dev libxrender-dev mesa-common-dev<br />
x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-render-dev x11proto-xext-dev xtrans-dev zlib1g-dev<br />
0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 6,327kB of archives.<br />
After this operation, 22.7MB of additional disk space will be used.<br />
Do you want to continue [Y/n]? y<br />
Get:1 http://ca.archive.ubuntu.com karmic/main x11proto-core-dev 7.0.15-1 [94.0kB]<br />
Get:2 http://ca.archive.ubuntu.com karmic/main libxau-dev 1:1.0.4-2 [16.7kB]<br />
Get:3 http://ca.archive.ubuntu.com karmic/main libxdmcp-dev 1:1.0.2-3 [20.0kB]<br />
Get:4 http://ca.archive.ubuntu.com karmic/main x11proto-input-dev 1.5.0-2ubuntu1 [12.1kB]<br />
Get:5 http://ca.archive.ubuntu.com karmic/main x11proto-kb-dev 1.0.3-3ubuntu1 [27.4kB]<br />
Get:6 http://ca.archive.ubuntu.com karmic/main xtrans-dev 1.2.4-1 [67.4kB]<br />
Get:7 http://ca.archive.ubuntu.com karmic/main libpthread-stubs0 0.1-2 [2,812B]<br />
Get:8 http://ca.archive.ubuntu.com karmic/main libpthread-stubs0-dev 0.1-2 [3,090B]<br />
Get:9 http://ca.archive.ubuntu.com karmic/main libxcb1-dev 1.4-1 [78.8kB]<br />
Get:10 http://ca.archive.ubuntu.com karmic/main libx11-dev 2:1.2.2-1ubuntu1 [1,920kB]<br />
Get:11 http://ca.archive.ubuntu.com karmic/main x11proto-xext-dev 7.0.4-2 [42.1kB]<br />
Get:12 http://ca.archive.ubuntu.com karmic/main libxext-dev 2:1.0.99.1-0ubuntu4 [79.3kB]<br />
Get:13 http://ca.archive.ubuntu.com karmic/main x11proto-render-dev 2:0.9.3-2 [7,096B]<br />
Get:14 http://ca.archive.ubuntu.com karmic/main libxrender-dev 1:0.9.4-2ubuntu1 [29.5kB]<br />
Get:15 http://ca.archive.ubuntu.com karmic-updates/main libexpat1-dev 2.0.1-4ubuntu1.1 [212kB]<br />
Get:16 http://ca.archive.ubuntu.com karmic/main zlib1g-dev 1:1.2.3.3.dfsg-13ubuntu3 [163kB]<br />
Get:17 http://ca.archive.ubuntu.com karmic/main libfreetype6-dev 2.3.9-5 [710kB]<br />
Get:18 http://ca.archive.ubuntu.com karmic/main libfontconfig1-dev 2.6.0-1ubuntu12 [575kB]<br />
Get:19 http://ca.archive.ubuntu.com karmic/main libgif-dev 4.1.6-6 [43.0kB]<br />
Get:20 http://ca.archive.ubuntu.com karmic/main libjpeg62-dev 6b-14build1 [192kB]<br />
Get:21 http://ca.archive.ubuntu.com karmic/main libncurses5-dev 5.7+20090803-2ubuntu2 [1,564kB]<br />
Get:22 http://ca.archive.ubuntu.com karmic/main libpng12-dev 1.2.37-1 [260kB]<br />
Get:23 http://ca.archive.ubuntu.com karmic/main mesa-common-dev 7.6.0-1ubuntu4 [177kB]<br />
Get:24 http://ca.archive.ubuntu.com karmic/main libgl1-mesa-dev 7.6.0-1ubuntu4 [29.3kB]<br />
Fetched 6,327kB in 11s (546kB/s)<br />
Selecting previously deselected package x11proto-core-dev.<br />
(Reading database ... 137879 files and directories currently installed.)<br />
Unpacking x11proto-core-dev (from ./x11proto-core-dev_7.0.15-1_all.deb) ...<br />
Selecting previously deselected package libxau-dev.<br />
Unpacking libxau-dev (from ./libxau-dev_1%3a1.0.4-2_i386.deb) ...<br />
Selecting previously deselected package libxdmcp-dev.<br />
Unpacking libxdmcp-dev (from ./libxdmcp-dev_1%3a1.0.2-3_i386.deb) ...<br />
Selecting previously deselected package x11proto-input-dev.<br />
Unpacking x11proto-input-dev (from ./x11proto-input-dev_1.5.0-2ubuntu1_all.deb) ...<br />
Selecting previously deselected package x11proto-kb-dev.<br />
Unpacking x11proto-kb-dev (from ./x11proto-kb-dev_1.0.3-3ubuntu1_all.deb) ...<br />
Selecting previously deselected package xtrans-dev.<br />
Unpacking xtrans-dev (from ./xtrans-dev_1.2.4-1_all.deb) ...<br />
Selecting previously deselected package libpthread-stubs0.<br />
Unpacking libpthread-stubs0 (from ./libpthread-stubs0_0.1-2_i386.deb) ...<br />
Selecting previously deselected package libpthread-stubs0-dev.<br />
Unpacking libpthread-stubs0-dev (from ./libpthread-stubs0-dev_0.1-2_i386.deb) ...<br />
Selecting previously deselected package libxcb1-dev.<br />
Unpacking libxcb1-dev (from ./libxcb1-dev_1.4-1_i386.deb) ...<br />
Selecting previously deselected package libx11-dev.<br />
Unpacking libx11-dev (from ./libx11-dev_2%3a1.2.2-1ubuntu1_i386.deb) ...<br />
Selecting previously deselected package x11proto-xext-dev.<br />
Unpacking x11proto-xext-dev (from ./x11proto-xext-dev_7.0.4-2_all.deb) ...<br />
Selecting previously deselected package libxext-dev.<br />
Unpacking libxext-dev (from ./libxext-dev_2%3a1.0.99.1-0ubuntu4_i386.deb) ...<br />
Selecting previously deselected package x11proto-render-dev.<br />
Unpacking x11proto-render-dev (from ./x11proto-render-dev_2%3a0.9.3-2_all.deb) ...<br />
Selecting previously deselected package libxrender-dev.<br />
Unpacking libxrender-dev (from ./libxrender-dev_1%3a0.9.4-2ubuntu1_i386.deb) ...<br />
Selecting previously deselected package libexpat1-dev.<br />
Unpacking libexpat1-dev (from ./libexpat1-dev_2.0.1-4ubuntu1.1_i386.deb) ...<br />
Selecting previously deselected package zlib1g-dev.<br />
Unpacking zlib1g-dev (from ./zlib1g-dev_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb) ...<br />
Selecting previously deselected package libfreetype6-dev.<br />
Unpacking libfreetype6-dev (from ./libfreetype6-dev_2.3.9-5_i386.deb) ...<br />
Selecting previously deselected package libfontconfig1-dev.<br />
Unpacking libfontconfig1-dev (from ./libfontconfig1-dev_2.6.0-1ubuntu12_i386.deb) ...<br />
Selecting previously deselected package libgif-dev.<br />
Unpacking libgif-dev (from ./libgif-dev_4.1.6-6_i386.deb) ...<br />
Selecting previously deselected package libjpeg62-dev.<br />
Unpacking libjpeg62-dev (from ./libjpeg62-dev_6b-14build1_i386.deb) ...<br />
Selecting previously deselected package libncurses5-dev.<br />
Unpacking libncurses5-dev (from ./libncurses5-dev_5.7+20090803-2ubuntu2_i386.deb) ...<br />
Selecting previously deselected package libpng12-dev.<br />
Unpacking libpng12-dev (from ./libpng12-dev_1.2.37-1_i386.deb) ...<br />
Selecting previously deselected package mesa-common-dev.<br />
Unpacking mesa-common-dev (from ./mesa-common-dev_7.6.0-1ubuntu4_i386.deb) ...<br />
Selecting previously deselected package libgl1-mesa-dev.<br />
Unpacking libgl1-mesa-dev (from ./libgl1-mesa-dev_7.6.0-1ubuntu4_i386.deb) ...<br />
Processing triggers for man-db ...<br />
Processing triggers for doc-base ...<br />
Processing 3 added doc-base file(s)...<br />
Registering documents with scrollkeeper...<br />
Setting up x11proto-core-dev (7.0.15-1) ...<br />
Setting up libxau-dev (1:1.0.4-2) ...<br />
Setting up libxdmcp-dev (1:1.0.2-3) ...<br />
Setting up x11proto-input-dev (1.5.0-2ubuntu1) ...<br />
Setting up x11proto-kb-dev (1.0.3-3ubuntu1) ...<br />
Setting up xtrans-dev (1.2.4-1) ...<br />
Setting up libpthread-stubs0 (0.1-2) ...<br />
Setting up libpthread-stubs0-dev (0.1-2) ...<br />
Setting up libxcb1-dev (1.4-1) ...<br />
Setting up libx11-dev (2:1.2.2-1ubuntu1) ...<br />
Setting up x11proto-xext-dev (7.0.4-2) ...<br />
Setting up libxext-dev (2:1.0.99.1-0ubuntu4) ...<br />
Setting up x11proto-render-dev (2:0.9.3-2) ...<br />
Setting up libxrender-dev (1:0.9.4-2ubuntu1) ...<br />
Setting up libexpat1-dev (2.0.1-4ubuntu1.1) ...<br />
Setting up zlib1g-dev (1:1.2.3.3.dfsg-13ubuntu3) ...<br />
Setting up libfreetype6-dev (2.3.9-5) ...<br />
Setting up libfontconfig1-dev (2.6.0-1ubuntu12) ...<br />
Setting up libgif-dev (4.1.6-6) ...<br />
Setting up libjpeg62-dev (6b-14build1) ...<br />
Setting up libncurses5-dev (5.7+20090803-2ubuntu2) ...<br />
Setting up libpng12-dev (1.2.37-1) ...<br />
Setting up mesa-common-dev (7.6.0-1ubuntu4) ...<br />
Setting up libgl1-mesa-dev (7.6.0-1ubuntu4) ...
</div>
<p></code></p>
<h5>command:</h5>
<p><code>
<div>
sudo apt-get install upx-ucl
</div>
<p></code></p>
<h5>printout:</h5>
<p><code>
<div>
Reading package lists... Done<br />
Building dependency tree<br />
Reading state information... Done<br />
The following packages were automatically installed and are no longer required:<br />
linux-headers-2.6.31-14 linux-headers-2.6.31-14-generic<br />
Use 'apt-get autoremove' to remove them.<br />
The following extra packages will be installed:<br />
libucl1<br />
The following NEW packages will be installed:<br />
libucl1 upx-ucl<br />
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 411kB of archives.<br />
After this operation, 1,544kB of additional disk space will be used.<br />
Do you want to continue [Y/n]? y<br />
Get:1 http://ca.archive.ubuntu.com karmic/main libucl1 1.03-4 [27.7kB]<br />
Get:2 http://ca.archive.ubuntu.com karmic/main upx-ucl 3.01-3ubuntu1 [383kB]<br />
Fetched 411kB in 1s (290kB/s)<br />
Selecting previously deselected package libucl1.<br />
(Reading database ... 140706 files and directories currently installed.)<br />
Unpacking libucl1 (from ./libucl1_1.03-4_i386.deb) ...<br />
Selecting previously deselected package upx-ucl.<br />
Unpacking upx-ucl (from ./upx-ucl_3.01-3ubuntu1_i386.deb) ...<br />
Processing triggers for doc-base ...<br />
Processing 1 added doc-base file(s)...<br />
Registering documents with scrollkeeper...<br />
Processing triggers for man-db ...<br />
Setting up libucl1 (1.03-4) ...<br />
Setting up upx-ucl (3.01-3ubuntu1) ...<br />
update-alternatives: error: no alternatives for upx.<br />
update-alternatives: using /usr/bin/upx-ucl to provide /usr/bin/upx (upx) in auto mode.<br />
Processing triggers for libc-bin ...<br />
ldconfig deferred processing now taking place
</div>
<p></code></p>
<h5>command:</h5>
<p><code>
<div>
wget http://ecere.com/ecere-sdk-0.44pre1.tar.bz2
</div>
<p></code></p>
<h5>printout:</h5>
<p><code>
<div>
--2010-03-02 01:02:09--  http://ecere.com/ecere-sdk-0.44pre1.tar.bz2<br />
Resolving ecere.com... 74.52.136.42<br />
Connecting to ecere.com|74.52.136.42|:80... connected.<br />
HTTP request sent, awaiting response... 200 OK<br />
Length: 13461225 (13M) [application/x-bzip2]<br />
Saving to: `ecere-sdk-0.44pre1.tar.bz2'<br />
100%[=================================================================================================&gt;] 13,461,225   803K/s   in 17s<br />
2010-03-02 01:02:26 (767 KB/s) - `ecere-sdk-0.44pre1.tar.bz2' saved [13461225/13461225]
</div>
<p></code></p>
<h5>command (no printout):</h5>
<p><code>
<div>
tar -xf ecere-sdk-0.44pre1.tar.bz2
</div>
<p></code></p>
<h5>command (no printout):</h5>
<p><code>
<div>
cd ecere-sdk-0.44pre1/
</div>
<p></code></p>
<h5>command:</h5>
<p><code>
<div>
make
</div>
<p></code></p>
<h5>printout:</h5>
<p><code>
<div>
Bootstrapping eC compiling tools...<br />
Building ecere...<br />
Building ec...<br />
Building ecp...<br />
Building ecc...<br />
Building ecs...<br />
All done!<br />
Building dependencies...<br />
Building libungif...<br />
Building 2nd stage ecere...<br />
ecere/src/sys/Mutex.ec:33:7: warning: pthread_mutexattr_setkind_np undefined; assuming extern returning int<br />
Building Vanilla Ecere...<br />
ecere/src/sys/Mutex.ec:33:7: warning: pthread_mutexattr_setkind_np undefined; assuming extern returning int<br />
                       Ultimate Packer for eXecutables<br />
                          Copyright (C) 1996 - 2009<br />
UPX 3.04        Markus Oberhumer, Laszlo Molnar &amp; John Reiser   Sep 27th 2009</p>
<p>        File size         Ratio      Format      Name<br />
   --------------------   ------   -----------   -----------<br />
   1054228 -&gt;    409240   38.82%  linux/elf386   extract                       </p>
<p>Packed 1 file.<br />
Building 2nd stage compiler<br />
Building 2nd stage libec...<br />
compiler/libec/src/lexer.ec:1403:28: warning: incompatible expression yy_ec[((unsigned int)(unsigned char)*yy_cp)] (int); expected byte<br />
compiler/libec/src/lexer.ec:1413:13: warning: incompatible expression yy_meta[(unsigned int)yy_c] (int); expected byte<br />
compiler/libec/src/lexer.ec:2566:27: warning: incompatible expression (*yy_cp ? yy_ec[((unsigned int)(unsigned char)*yy_cp)] : (unsigned char)1) (int); expected byte<br />
compiler/libec/src/lexer.ec:2576:12: warning: incompatible expression yy_meta[(unsigned int)yy_c] (int); expected byte<br />
compiler/libec/src/lexer.ec:2611:11: warning: incompatible expression yy_meta[(unsigned int)yy_c] (int); expected byte<br />
compiler/libec/src/lexer.ec:426:26: warning: incompatible expression c (int); expected char<br />
compiler/libec/src/lexer.ec:434:29: warning: incompatible expression c (int); expected char<br />
compiler/libec/obj/release/ec.main.ec:525:1: warning: Redefinition of sourceFileStack (defining as char[10][MAX_LOCATION], already defined as char[MAX_INCLUDE_DEPTH][MAX_LOCATION])<br />
Building 2nd stage ecp...<br />
Building 2nd stage ecc...<br />
Building 2nd stage ecs...<br />
Building eC Core Runtime...<br />
ecere/src/sys/Mutex.ec:33:7: warning: pthread_mutexattr_setkind_np undefined; assuming extern returning int<br />
Building IDE...<br />
Building epj2make...<br />
Building Documentor...<br />
Building EDA...<br />
The Ecere SDK is fully built.
</p></div>
<p></code></p>
<h5>pertinent printout:</h5>
<p><code>
<div>
Bootstrapping eC compiling tools...<br />
Building ecere...<br />
Building ec...<br />
Building ecp...<br />
Building ecc...<br />
Building ecs...<br />
All done!<br />
Building dependencies...<br />
Building libungif...<br />
Building 2nd stage ecere...<br />
Building Vanilla Ecere...<br />
Building 2nd stage compiler<br />
Building 2nd stage libec...<br />
Building 2nd stage ecp...<br />
Building 2nd stage ecc...<br />
Building 2nd stage ecs...<br />
Building eC Core Runtime...<br />
Building IDE...<br />
Building epj2make...<br />
Building Documentor...<br />
Building EDA...<br />
The Ecere SDK is fully built.
</div>
<p></code></p>
<h5>command:</h5>
<p><code>
<div>
sudo make install
</div>
<p></code></p>
<h5>printout:</h5>
<p><code>
<div>
The Ecere SDK has been installed.
</div>
<p></code></p>
<h3>End of post.</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ilyeus.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ilyeus.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ilyeus.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ilyeus.wordpress.com&amp;blog=12329219&amp;post=1&amp;subd=ilyeus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ilyeus.wordpress.com/2010/03/02/build-ecere-ubuntu910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0c1197014e8462ce2ead6145467096e3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">redj</media:title>
		</media:content>
	</item>
	</channel>
</rss>
