<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Martin&#039;s Place</title>
	<atom:link href="http://www.mfoot.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mfoot.com</link>
	<description></description>
	<lastBuildDate>Fri, 23 Dec 2011 23:39:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Cross-compiling FreeType for Android with CMake by Martin</title>
		<link>http://www.mfoot.com/2011/12/cross-compiling-freetype-for-android-with-cmake/comment-page-1/#comment-1317</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 23 Dec 2011 23:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfoot.com/?p=255#comment-1317</guid>
		<description>Hey, the line specified by the compiler output points to your FT_CONFIG_MODULES_H define not being defined. It looks like wordpress stripped out the code I pasted inside the &lt; and &gt; symbols, please modify that line in the CMake file with this:

&lt;code&gt;add_definitions(&quot;-DFT_CONFIG_MODULES_H=&lt;ftmodule.h&gt;&quot;)&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hey, the line specified by the compiler output points to your FT_CONFIG_MODULES_H define not being defined. It looks like wordpress stripped out the code I pasted inside the < and > symbols, please modify that line in the CMake file with this:</p>
<p><code>add_definitions("-DFT_CONFIG_MODULES_H=&lt;ftmodule.h&gt;")</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-compiling FreeType for Android with CMake by John Cary</title>
		<link>http://www.mfoot.com/2011/12/cross-compiling-freetype-for-android-with-cmake/comment-page-1/#comment-1316</link>
		<dc:creator>John Cary</dc:creator>
		<pubDate>Fri, 23 Dec 2011 15:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfoot.com/?p=255#comment-1316</guid>
		<description>Did not work for me:

numbersix.cary$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Checking whether C compiler has -isysroot
-- Checking whether C compiler has -isysroot - yes
-- Checking whether C compiler supports OSX deployment target flag
-- Checking whether C compiler supports OSX deployment target flag - yes
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Checking whether CXX compiler has -isysroot
-- Checking whether CXX compiler has -isysroot - yes
-- Checking whether CXX compiler supports OSX deployment target flag
-- Checking whether CXX compiler supports OSX deployment target flag - yes
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Configuring done
-- Generating done
-- Build files have been written to: /Users/cary/projects/vorpalall/builds/freetype-2.4.8/ser
numbersix.cary$ make
Scanning dependencies of target freetype
[  1%] Building C object CMakeFiles/freetype.dir/src/base/ftsystem.c.o
[  3%] Building C object CMakeFiles/freetype.dir/src/base/ftdebug.c.o
[  5%] Building C object CMakeFiles/freetype.dir/src/base/ftinit.c.o
/Users/cary/projects/vorpalall/builds/freetype-2.4.8/src/base/ftinit.c:67:29: error: #include expects &quot;FILENAME&quot; or 
/Users/cary/projects/vorpalall/builds/freetype-2.4.8/src/base/ftinit.c:76:29: error: #include expects &quot;FILENAME&quot; or 
make[2]: *** [CMakeFiles/freetype.dir/src/base/ftinit.c.o] Error 1
make[1]: *** [CMakeFiles/freetype.dir/all] Error 2
make: *** [all] Error</description>
		<content:encoded><![CDATA[<p>Did not work for me:</p>
<p>numbersix.cary$ cmake ..<br />
&#8211; The C compiler identification is GNU<br />
&#8211; The CXX compiler identification is GNU<br />
&#8211; Checking whether C compiler has -isysroot<br />
&#8211; Checking whether C compiler has -isysroot &#8211; yes<br />
&#8211; Checking whether C compiler supports OSX deployment target flag<br />
&#8211; Checking whether C compiler supports OSX deployment target flag &#8211; yes<br />
&#8211; Check for working C compiler: /usr/bin/gcc<br />
&#8211; Check for working C compiler: /usr/bin/gcc &#8212; works<br />
&#8211; Detecting C compiler ABI info<br />
&#8211; Detecting C compiler ABI info &#8211; done<br />
&#8211; Checking whether CXX compiler has -isysroot<br />
&#8211; Checking whether CXX compiler has -isysroot &#8211; yes<br />
&#8211; Checking whether CXX compiler supports OSX deployment target flag<br />
&#8211; Checking whether CXX compiler supports OSX deployment target flag &#8211; yes<br />
&#8211; Check for working CXX compiler: /usr/bin/c++<br />
&#8211; Check for working CXX compiler: /usr/bin/c++ &#8212; works<br />
&#8211; Detecting CXX compiler ABI info<br />
&#8211; Detecting CXX compiler ABI info &#8211; done<br />
&#8211; Configuring done<br />
&#8211; Generating done<br />
&#8211; Build files have been written to: /Users/cary/projects/vorpalall/builds/freetype-2.4.8/ser<br />
numbersix.cary$ make<br />
Scanning dependencies of target freetype<br />
[  1%] Building C object CMakeFiles/freetype.dir/src/base/ftsystem.c.o<br />
[  3%] Building C object CMakeFiles/freetype.dir/src/base/ftdebug.c.o<br />
[  5%] Building C object CMakeFiles/freetype.dir/src/base/ftinit.c.o<br />
/Users/cary/projects/vorpalall/builds/freetype-2.4.8/src/base/ftinit.c:67:29: error: #include expects &#8220;FILENAME&#8221; or<br />
/Users/cary/projects/vorpalall/builds/freetype-2.4.8/src/base/ftinit.c:76:29: error: #include expects &#8220;FILENAME&#8221; or<br />
make[2]: *** [CMakeFiles/freetype.dir/src/base/ftinit.c.o] Error 1<br />
make[1]: *** [CMakeFiles/freetype.dir/all] Error 2<br />
make: *** [all] Error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bring Me The Horizon, Southampton, 31st October &#8217;08 by jess</title>
		<link>http://www.mfoot.com/2008/11/bring-me-the-horizon-southampton-31st-october-08/comment-page-1/#comment-748</link>
		<dc:creator>jess</dc:creator>
		<pubDate>Wed, 01 Dec 2010 23:11:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfoot.com/?p=21#comment-748</guid>
		<description>oliver sykes is sexy!!! wow!</description>
		<content:encoded><![CDATA[<p>oliver sykes is sexy!!! wow!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

