<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-1099</id>
	<title>Nabble - Freetype - Dev</title>
	<updated>2009-12-20T09:20:30Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Freetype---Dev-f1099.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Freetype---Dev-f1099.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26865718</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-20T09:20:30Z</published>
	<updated>2009-12-20T09:20:30Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&amp;gt;&amp;gt; Just getting rid of _debug_mem_dummy would cause a problem? &amp;nbsp;Is
&lt;br&gt;&amp;gt;&amp;gt; there another way to create a non-empty file? &amp;nbsp;How about a useless
&lt;br&gt;&amp;gt;&amp;gt; but harmless #include, like #include &amp;lt;string.h&amp;gt;?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Ah, I haven't thought of that. &amp;nbsp;Sounds like a good idea.
&lt;br&gt;&lt;br&gt;Well, after some thinking I now believe that this doesn't work: The
&lt;br&gt;preprocessor removes everything and we thus still have an empty file
&lt;br&gt;to compile.
&lt;br&gt;&lt;br&gt;I've now replaced it with a `typedef'.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; FTC_GNode_Compare() has 2 parameters:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; FT_LOCAL( FT_Bool )
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; FTC_GNode_Compare( FTC_GNode &amp;nbsp; gnode,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_GQuery &amp;nbsp;gquery );
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; but it's being cast to FTC_Node_CompareFunc which is 3 parameters:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; typedef FT_Bool
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; (*FTC_Node_CompareFunc)( FTC_Node &amp;nbsp; &amp;nbsp;node,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FT_Pointer &amp;nbsp;key,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_Cache &amp;nbsp; cache );
&lt;/div&gt;&lt;br&gt;Yes, this seems to be the cause. &amp;nbsp;However, fixing this is not easy
&lt;br&gt;(except providing a new macro which is rather unelegant) -- at least
&lt;br&gt;for me. &amp;nbsp;Any idea how to work around the warning?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865718&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26865718.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26850226</id>
	<title>Re: Extra data for 3D acceleration</title>
	<published>2009-12-18T13:54:14Z</published>
	<updated>2009-12-18T13:54:14Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; I'm working on code to implement rendering of fonts on a GPU. &amp;nbsp;In
&lt;br&gt;&amp;gt; reality, the fonts will be rendered on the CPU using FreeType2 and a
&lt;br&gt;&amp;gt; texture representing the shape will be sent to the GPU as in the
&lt;br&gt;&amp;gt; paper at alice.loria.fr/publications/papers/2005/VTM/vtm.pdf.
&lt;br&gt;&lt;br&gt;Interesting.
&lt;br&gt;&lt;br&gt;&amp;gt; To do that I need certain information at each pixel. &amp;nbsp;Namely:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1) Where at the top or left side of the pixel, does the first
&lt;br&gt;&amp;gt; discontinuity occur (If there is more than one discontinuity it will
&lt;br&gt;&amp;gt; increase the resolution until there is only one.)
&lt;br&gt;&lt;br&gt;I'm not completely sure how a `discontinuity' is defined (I've only
&lt;br&gt;quickly skimmed the abovementioned article), but I believe that this
&lt;br&gt;information is not available. &amp;nbsp;The smooth rasterizer only computes
&lt;br&gt;vertical or horizontal spans, that is, it searches for intersections
&lt;br&gt;of the grid with the outlines. &amp;nbsp;If I interpret the article currectly,
&lt;br&gt;this is not sufficient information for you.
&lt;br&gt;&lt;br&gt;&amp;gt; 2) At that point, what is the angle to the tangent of the
&lt;br&gt;&amp;gt; discontinuity.
&lt;br&gt;&lt;br&gt;Ditto.
&lt;br&gt;&lt;br&gt;&amp;gt; 3) Likewise for the bottom or right side of the pixel.
&lt;br&gt;&lt;br&gt;Ditto.
&lt;br&gt;&lt;br&gt;&amp;gt; My plan is to modify the 'grays' raster to generate this data and
&lt;br&gt;&amp;gt; send it to the 'call-back' function where I will create the
&lt;br&gt;&amp;gt; necessary texture for the GPU.
&lt;br&gt;&lt;br&gt;This shouldn't be too hard, I believe, especially if the subdividing
&lt;br&gt;of the Bézier curves as done in the smooth rasterizer satisfies your
&lt;br&gt;needs.
&lt;br&gt;&lt;br&gt;&amp;gt; My assumptions are that the ftgrays AA rasterer is the best choice
&lt;br&gt;&amp;gt; because it has the most data points. &amp;nbsp;(Though the texture map I will
&lt;br&gt;&amp;gt; generate stores only black/white; the GPU will calculate the
&lt;br&gt;&amp;gt; gray/opacity level from the above data.)
&lt;br&gt;&lt;br&gt;In case it doesn't suffice you could use FT_Outline_Decompose,
&lt;br&gt;providing proper callbacks to handle the lines and Bézier arcs by
&lt;br&gt;yourself.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26850226&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extra-data-for-3D-acceleration-tp26846300p26850226.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26846300</id>
	<title>Extra data for 3D acceleration</title>
	<published>2009-12-18T08:53:03Z</published>
	<updated>2009-12-18T08:53:03Z</updated>
	<author>
		<name>Bruce Long-2</name>
	</author>
	<content type="html">I&amp;#39;m working on code to implement rendering of fonts on a GPU. In reality, the fonts will be rendered on the CPU using FreeType2 and a texture representing the shape will be sent to the GPU as in the paper at &lt;cite&gt;&lt;a href=&quot;http://alice.loria.fr/publications/papers/2005/VTM/vtm.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;alice.loria.fr/publications/papers/2005/VTM/vtm.pdf&lt;/a&gt;.&lt;br&gt;

&lt;br clear=&quot;all&quot;&gt;&lt;/cite&gt;To do that I need certain information at each pixel. Namely: 1) Where at the top or left side of the pixel, does the first discontinuity occur (If there is more than one discontinuity it will increase the resolution until there is only one.) 2) At that point, what is the angle to the tangent of the discontinuity. 3) Likewise for the bottom or right side of the pixel.&lt;br&gt;

&lt;br&gt;If rastering vertically, I need that info for the sides of the pixel, but if rastering horizontally, I need the info for the points on the top and bottom of the pixel. I don&amp;#39;t need both. (See figure 5 in the above paper for a diagram.)&lt;br&gt;

&lt;br&gt;My plan is to modify the &amp;#39;grays&amp;#39; raster to generate this data and send it to the &amp;#39;call-back&amp;#39; function where I will create the necessary texture for the GPU.&lt;br&gt;&lt;br&gt;I have that all set up (raster as StandAlone), and I just need to figure out how to calculate that data. Before I look more closely at how grays_raster is doing its thing, I thought it prudent to seek advice and communicate what I am doing. This weekend/week I will be fiddling with the renderer to discover how to get this data. My assumptions are that the ftgrays AA rasterer is the best choice because it has the most data points. (Though the texture map I will generate stores only black/white; the GPU will calculate the gray/opacity level from the above data.&lt;br&gt;

&lt;br&gt;If anyone is thinking &amp;quot;Oh, that&amp;#39;s easy, just use raster X in mode Y and then .....&amp;quot; would you enlighten me? &lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&lt;br&gt;Bruce&lt;br&gt;&lt;br&gt;-- &lt;br&gt;Give me immortality or give me death!&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26846300&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Extra-data-for-3D-acceleration-tp26846300p26846300.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26839541</id>
	<title>Re: Free type font - query</title>
	<published>2009-12-17T21:59:02Z</published>
	<updated>2009-12-17T21:59:02Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; We have got the output display in LCD monitor by using the
&lt;br&gt;&amp;gt; freetype-2.3.11 with example1.c with blurred outline.
&lt;br&gt;&lt;br&gt;Yes, this example is very simple to show the most essential basics.
&lt;br&gt;&lt;br&gt;&amp;gt; Regarding the demo code containing gamma corrections, we could not
&lt;br&gt;&amp;gt; see the bitmap information when we run it as standalone.
&lt;br&gt;&lt;br&gt;Ah, perhaps a misunderstanding. &amp;nbsp;I mean the various demo programs in
&lt;br&gt;the `ft2demos-2.3.11' bundle (for Windows it is called ft2dmo2311).
&lt;br&gt;For example, you can control the gamma correction with the keys `G',
&lt;br&gt;`g', and `v' in `ftview'.
&lt;br&gt;&lt;br&gt;&amp;gt; Can u please suggest for any improvements to get the bitmap within
&lt;br&gt;&amp;gt; the mentioned width/height.
&lt;br&gt;&lt;br&gt;Well, FreeType doesn't produce more than 255 gray levels. &amp;nbsp;For
&lt;br&gt;`sharper' images you must not use subpixel positioning (which gives
&lt;br&gt;bad results at small sizes), or you have to use an LCD rendering mode.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26839541&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-type-font---query-tp26837792p26839541.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26830881</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-17T08:32:11Z</published>
	<updated>2009-12-17T08:32:11Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; I'm afraid it still warns, which doesn't surprise me (I don't think
&lt;br&gt;&amp;gt; changing from enum to #define changes the sign of the constant).
&lt;br&gt;&lt;br&gt;Hmm. &amp;nbsp;An enumeration is implicitly a signed int, whereas I've always
&lt;br&gt;thought that the compiler automatically assigns either signed or
&lt;br&gt;unsigned to (positive) constant values, depending on the other value
&lt;br&gt;of the binop (the `&amp;' in this case). &amp;nbsp;Apparently, this is wrong
&lt;br&gt;thinking.
&lt;br&gt;&lt;br&gt;&amp;gt; Just getting rid of _debug_mem_dummy would cause a problem? &amp;nbsp;Is
&lt;br&gt;&amp;gt; there another way to create a non-empty file? &amp;nbsp;How about a useless
&lt;br&gt;&amp;gt; but harmless #include, like #include &amp;lt;string.h&amp;gt;?
&lt;br&gt;&lt;br&gt;Ah, I haven't thought of that. &amp;nbsp;Sounds like a good idea.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; WARNING: While resolving call to function 'FTC_GNode_Compare'
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; arguments were dropped!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;This is something I don't understand at all. &amp;nbsp;I have never seen such
&lt;br&gt;&amp;gt;&amp;gt;a warning before, and I have no idea what it means. &amp;nbsp;Can you
&lt;br&gt;&amp;gt;&amp;gt;elaborate?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'd never seen it either. &amp;nbsp;It's from the llvm compiler.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I _think_ the cause is ftccache.h line 204 (current git):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; FTC_Node_CompareFunc &amp;nbsp;_nodcomp = (FTC_Node_CompareFunc)(nodecmp);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; FTC_GNode_Compare() has 2 parameters:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; FT_LOCAL( FT_Bool )
&lt;br&gt;&amp;gt; &amp;nbsp; FTC_GNode_Compare( FTC_GNode &amp;nbsp; gnode,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_GQuery &amp;nbsp;gquery );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; but it's being cast to FTC_Node_CompareFunc which is 3 parameters:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; typedef FT_Bool
&lt;br&gt;&amp;gt; &amp;nbsp; (*FTC_Node_CompareFunc)( FTC_Node &amp;nbsp; &amp;nbsp;node,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FT_Pointer &amp;nbsp;key,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_Cache &amp;nbsp; cache );
&lt;/div&gt;&lt;br&gt;Thanks for the analysis; will check this soon.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26830881&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26830881.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26830382</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-17T08:04:35Z</published>
	<updated>2009-12-17T08:04:35Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">On 12/16/09 6:14 PM, Werner LEMBERG said:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; I don't think your fix was right, the warnings are still there:
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Note that those lines have 2 comparisons, not sure which it is
&lt;br&gt;&amp;gt;&amp;gt; complaining about...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;OK, hopefully it's now really fixed in git. &amp;nbsp;Please test.
&lt;br&gt;&lt;br&gt;I'm afraid it still warns, which doesn't surprise me (I don't think
&lt;br&gt;changing from enum to #define changes the sign of the constant). &amp;nbsp;Which
&lt;br&gt;compiler do you use? &amp;nbsp;You should be able to repro with gcc's -Wextra or -
&lt;br&gt;Wsign-compare I think.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /.../VTK/Utilities/vtkfreetype/src/base/ftdbgmem.c:992: warning:
&lt;br&gt;&amp;gt;&amp;gt; `_debug_mem_dummy' defined but not used
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;This is expected, more or less:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;#if FT_DEBUG_MEMORY
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;#else &amp;nbsp;/* !FT_DEBUG_MEMORY */
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;/* ANSI C doesn't like empty source files */
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;static const FT_Byte &amp;nbsp;_debug_mem_dummy = 0;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;#endif /* !FT_DEBUG_MEMORY */
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;If you know a clean method to avoid the warning, please tell me.
&lt;/div&gt;&lt;br&gt;Just getting rid of _debug_mem_dummy would cause a problem? &amp;nbsp;Is there
&lt;br&gt;another way to create a non-empty file? &amp;nbsp;How about a useless but
&lt;br&gt;harmless #include, like #include &amp;lt;string.h&amp;gt;?
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; WARNING: While resolving call to function 'FTC_GNode_Compare'
&lt;br&gt;&amp;gt;&amp;gt; arguments were dropped!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;This is something I don't understand at all. &amp;nbsp;I have never seen such a
&lt;br&gt;&amp;gt;warning before, and I have no idea what it means. &amp;nbsp;Can you elaborate?
&lt;br&gt;&lt;br&gt;I'd never seen it either. &amp;nbsp;It's from the llvm compiler.
&lt;br&gt;&lt;br&gt;I _think_ the cause is ftccache.h line 204 (current git):
&lt;br&gt;&lt;br&gt;&amp;nbsp; FTC_Node_CompareFunc &amp;nbsp;_nodcomp = (FTC_Node_CompareFunc)(nodecmp);
&lt;br&gt;&lt;br&gt;FTC_GNode_Compare() has 2 parameters:
&lt;br&gt;&lt;br&gt;&amp;nbsp; FT_LOCAL( FT_Bool )
&lt;br&gt;&amp;nbsp; FTC_GNode_Compare( FTC_GNode &amp;nbsp; gnode,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_GQuery &amp;nbsp;gquery );
&lt;br&gt;&lt;br&gt;but it's being cast to FTC_Node_CompareFunc which is 3 parameters:
&lt;br&gt;&lt;br&gt;&amp;nbsp; typedef FT_Bool
&lt;br&gt;&amp;nbsp; (*FTC_Node_CompareFunc)( FTC_Node &amp;nbsp; &amp;nbsp;node,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FT_Pointer &amp;nbsp;key,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FTC_Cache &amp;nbsp; cache );
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26830382&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26830382&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26830382.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26837792</id>
	<title>Free type font - query</title>
	<published>2009-12-17T05:18:27Z</published>
	<updated>2009-12-17T05:18:27Z</updated>
	<author>
		<name>Poornima-6</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Thanks for your suggestions for improving the smoothness of the font.
&lt;br&gt;&lt;br&gt;We have got the output display in LCD monitor by using the freetype-2.3.11
&lt;br&gt;with example1.c with blurred outline.
&lt;br&gt;&lt;br&gt;Regarding the demo code containing gamma corrections, we could not see the
&lt;br&gt;bitmap information when we run it as standalone. Do we need to integrate the
&lt;br&gt;related files in demo code to already existing project, as the gamma
&lt;br&gt;correction related files are missing in freetype-2.3.11?
&lt;br&gt;&lt;br&gt;When we use resolution more than 72 in FT_Set_Char_Size, the received bitmap
&lt;br&gt;width/height exceeds the mentioned width/height but blurring level gets
&lt;br&gt;reduced.
&lt;br&gt;&lt;br&gt;Can u please suggest for any improvements to get the bitmap within the
&lt;br&gt;mentioned width/height.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Thanks and Regards,
&lt;br&gt;Poornima.
&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Werner LEMBERG [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26837792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wl@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, December 16, 2009 3:18 AM
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26837792&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;poornima.m@...&lt;/a&gt;
&lt;br&gt;Subject: Re: Free type font - query
&lt;br&gt;&lt;br&gt;&lt;br&gt;First of all, please NEVER send images in BMP format! &amp;nbsp;They are
&lt;br&gt;ridiculously large: What you've sent has a size of 2.2MByte. &amp;nbsp;If you
&lt;br&gt;convert this to PNG format, it just takes 16kByte. &amp;nbsp;Maybe this is the
&lt;br&gt;reason for the email delivery failure...
&lt;br&gt;&lt;br&gt;&amp;gt; We have sent this mail to the personal id. &amp;nbsp;Sorry if there is any
&lt;br&gt;&amp;gt; inconvenience.
&lt;br&gt;&lt;br&gt;Please try the email list again for more questions.
&lt;br&gt;&lt;br&gt;&amp;gt; But the outline seems not to be smooth. Please find the image file
&lt;br&gt;&amp;gt; in the attachment for your reference.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Could you please suggest us for any improvements?
&lt;br&gt;&lt;br&gt;I don't have time currently to look at it. &amp;nbsp;Please check our demo
&lt;br&gt;programs, especially ftdiff and ftview, for details.
&lt;br&gt;&lt;br&gt;Just a general remark: If you display white images on black
&lt;br&gt;background, you have to adjust the gamma values to get smoother edges.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26837792&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-type-font---query-tp26837792p26837792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26824068</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-16T23:04:56Z</published>
	<updated>2009-12-16T23:04:56Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; /.../VTK/Utilities/vtkfreetype/src/base/ftdbgmem.c:992: warning:
&lt;br&gt;&amp;gt; `_debug_mem_dummy' defined but not used
&lt;br&gt;&lt;br&gt;This is expected, more or less:
&lt;br&gt;&lt;br&gt;&amp;nbsp; #if FT_DEBUG_MEMORY
&lt;br&gt;&amp;nbsp; ...
&lt;br&gt;&amp;nbsp; #else &amp;nbsp;/* !FT_DEBUG_MEMORY */
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; /* ANSI C doesn't like empty source files */
&lt;br&gt;&amp;nbsp; &amp;nbsp; static const FT_Byte &amp;nbsp;_debug_mem_dummy = 0;
&lt;br&gt;&lt;br&gt;&amp;nbsp; #endif /* !FT_DEBUG_MEMORY */
&lt;br&gt;&lt;br&gt;If you know a clean method to avoid the warning, please tell me.
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; WARNING: While resolving call to function 'FTC_GNode_Compare'
&lt;br&gt;&amp;gt; arguments were dropped!
&lt;br&gt;&lt;br&gt;This is something I don't understand at all. &amp;nbsp;I have never seen such a
&lt;br&gt;warning before, and I have no idea what it means. &amp;nbsp;Can you elaborate?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26824068&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26824068.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26814841</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-16T09:14:44Z</published>
	<updated>2009-12-16T09:14:44Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; I don't think your fix was right, the warnings are still there:
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Note that those lines have 2 comparisons, not sure which it is
&lt;br&gt;&amp;gt; complaining about...
&lt;br&gt;&lt;br&gt;OK, hopefully it's now really fixed in git. &amp;nbsp;Please test.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26814841&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26814841.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26814199</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-16T08:38:32Z</published>
	<updated>2009-12-16T08:38:32Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">On 12/15/09 9:00 AM, Werner LEMBERG said:
&lt;br&gt;&lt;br&gt;&amp;gt;Thanks for the report.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; 4 warnings:
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I've fixed them in git.
&lt;br&gt;&lt;br&gt;I don't think your fix was right, the warnings are still there:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=494016&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Note that those lines have 2 comparisons, not sure which it is
&lt;br&gt;complaining about...
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26814199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26814199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26814199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26811331</id>
	<title>Free type font - query</title>
	<published>2009-12-15T21:53:45Z</published>
	<updated>2009-12-15T21:53:45Z</updated>
	<author>
		<name>Poornima-6</name>
	</author>
	<content type="html">&lt;html xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;


&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Hi,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;We are using your TTF open source code for our project GUI.
We got success in getting the display of characters in our platform.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;But the outline seems not to be smooth. Please find the
image file in the attachment for your reference.&lt;font color=navy&gt;&lt;span style='color:navy'&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Could you please suggest us for any improvements?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Please find the details of our implementation:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;* Character height is 20&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;* working platform &amp;#8211; ADI VDSP++&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;* Output display &amp;#8211; LCD monitor through HDMI connector&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal style='margin-bottom:12.0pt'&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;font-family:Arial'&gt;Kindly let me know if you need more details
of our implementation.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Thanks and Regards,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Poornima.M&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 color=navy face=Arial&gt;&lt;span style='font-size:
10.0pt;font-family:Arial;color:navy'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26811331&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;ex1.png&lt;/strong&gt; (36K) &lt;a href=&quot;http://old.nabble.com/attachment/26811331/0/ex1.png&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-type-font---query-tp26811331p26811331.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26806268</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-12-15T20:50:35Z</published>
	<updated>2009-12-15T20:50:35Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">On Tue, 15 Dec 2009 12:33:46 -0500
&lt;br&gt;&amp;quot;Sean McBride&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26806268&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;On 11/26/09 6:31 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26806268&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; said:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&lt;/a&gt;&amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;* it digs &amp;quot;freetype2&amp;quot; directory. please be careful not
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;* to overwrite your existing &amp;quot;freetype2&amp;quot; directory.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;Please test it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I've just tried, and this does seem to fix the problem I reported at the
&lt;br&gt;&amp;gt;start of this thread.
&lt;/div&gt;&lt;br&gt;Thank you for checking! Just I've committed the patch to GIT.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26806268&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26806268.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26798619</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-12-15T09:33:46Z</published>
	<updated>2009-12-15T09:33:46Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">On 11/26/09 6:31 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26798619&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; said:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;Sean, could you review the patch? Yet I don't have access
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;to Mac OS X 10.6 machines, so I cannot check if this patch
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;solves the problem you reported.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;I don't know anything about autoconf/automake or even shell script, so
&lt;br&gt;&amp;gt;&amp;gt;I'm not too sure. :(
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Oh, I'm sorry. I uploaded a tarball with improved configure at
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&lt;a href=&quot;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;* it digs &amp;quot;freetype2&amp;quot; directory. please be careful not
&lt;br&gt;&amp;gt; &amp;nbsp;* to overwrite your existing &amp;quot;freetype2&amp;quot; directory.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Please test it.
&lt;/div&gt;&lt;br&gt;I've just tried, and this does seem to fix the problem I reported at the
&lt;br&gt;start of this thread.
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26798619&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26798619&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26798619.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26796949</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-15T07:49:29Z</published>
	<updated>2009-12-15T07:49:29Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">On 12/15/09 9:00 AM, Werner LEMBERG said:
&lt;br&gt;&lt;br&gt;&amp;gt;Thanks for the report.
&lt;br&gt;&lt;br&gt;Thanks for fixing them!
&lt;br&gt;&lt;br&gt;Here are a few more from overnight builds, some warnings are duplicates,
&lt;br&gt;but some are not:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493582&lt;/a&gt;&amp;gt;
&lt;br&gt;/.../VTK/Utilities/vtkfreetype/src/base/ftdbgmem.c:992: warning:
&lt;br&gt;`_debug_mem_dummy' defined but not used
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/viewBuildError.php?type=1&amp;buildid=493423&lt;/a&gt;&amp;gt;
&lt;br&gt;WARNING: While resolving call to function 'FTC_GNode_Compare' arguments
&lt;br&gt;were dropped!
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26796949&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26796949&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26796949.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26791050</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-15T00:00:46Z</published>
	<updated>2009-12-15T00:00:46Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;Thanks for the report.
&lt;br&gt;&lt;br&gt;&amp;gt; 4 warnings:
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;I've fixed them in git.
&lt;br&gt;&lt;br&gt;&amp;gt; 26 warnings:
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Some of them look harmless, others look like they should be fixed.
&lt;br&gt;&lt;br&gt;Toshiya-san, please take care of them.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26791050&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26791050.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26788086</id>
	<title>Re: freetype compilation warnings</title>
	<published>2009-12-14T17:37:04Z</published>
	<updated>2009-12-14T17:37:04Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Thank you for the information, I will check, although
&lt;br&gt;I don't have Microsoft VisualStudio compiler.
&lt;br&gt;&lt;br&gt;BTW, Could you test revised configure (not commited
&lt;br&gt;to git repository yet) for Mac OS X 10.6?
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://lists.gnu.org/archive/html/freetype-devel/2009-11/msg00045.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.gnu.org/archive/html/freetype-devel/2009-11/msg00045.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;On Mon, 14 Dec 2009 16:31:14 -0500
&lt;br&gt;&amp;quot;Sean McBride&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788086&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I have just today updated VTK (www.vtk.org) from using freetype 2.3.7 to
&lt;br&gt;&amp;gt;2.3.11. &amp;nbsp;The VTK project has a large number and variety of machines
&lt;br&gt;&amp;gt;doing nightly compilations and some of them are showing compiler
&lt;br&gt;&amp;gt;warnings from freetype.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;I'm hoping the freetype devs can look at them, and consider fixing as
&lt;br&gt;&amp;gt;many as reasonable:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;4 warnings:
&lt;br&gt;&amp;gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;26 warnings:
&lt;br&gt;&amp;gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Some of them look harmless, others look like they should be fixed.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Thanks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-- 
&lt;br&gt;&amp;gt;____________________________________________________________
&lt;br&gt;&amp;gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788086&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;&amp;gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Freetype-devel mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788086&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26788086&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26788086.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26785272</id>
	<title>freetype compilation warnings</title>
	<published>2009-12-14T13:31:14Z</published>
	<updated>2009-12-14T13:31:14Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I have just today updated VTK (www.vtk.org) from using freetype 2.3.7 to
&lt;br&gt;2.3.11. &amp;nbsp;The VTK project has a large number and variety of machines
&lt;br&gt;doing nightly compilations and some of them are showing compiler
&lt;br&gt;warnings from freetype.
&lt;br&gt;&lt;br&gt;I'm hoping the freetype devs can look at them, and consider fixing as
&lt;br&gt;many as reasonable:
&lt;br&gt;&lt;br&gt;4 warnings:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=493003&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;26 warnings:
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.cdash.org/CDash/buildSummary.php?buildid=492993&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Some of them look harmless, others look like they should be fixed.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26785272&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freetype-compilation-warnings-tp26785272p26785272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26702820</id>
	<title>Re: Re: [tex-live] Fw: &quot;CMap Resources&quot; open source project</title>
	<published>2009-12-08T15:35:47Z</published>
	<updated>2009-12-08T15:35:47Z</updated>
	<author>
		<name>Ken Lunde</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;I have some very good news to share. The &amp;quot;Mapping Resources for PDF&amp;quot; open source project, which includes all of the CMap-like mapping resources, went public today. See:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://opensource.adobe.com/wiki/display/pdfmapping/Mapping+Resources+for+PDF&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://opensource.adobe.com/wiki/display/pdfmapping/Mapping+Resources+for+PDF&lt;/a&gt;&lt;br&gt;&lt;br&gt;Enjoy!
&lt;br&gt;&lt;br&gt;-- Dr. Ken Lunde
&lt;br&gt;&amp;nbsp; &amp;nbsp;Senior Computer Scientist, CJKV Type Development
&lt;br&gt;&amp;nbsp; &amp;nbsp;Adobe Systems Incorporated
&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26702820&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lunde@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;On 2009/11/15, at 15:12, Albert Astals Cid wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; A Dijous, 24 de setembre de 2009, Ken Lunde va escriure:
&lt;br&gt;&amp;gt;&amp;gt; Karl,
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I discussed this with the Acrobat team today, and putting the Acrobat
&lt;br&gt;&amp;gt;&amp;gt; mapping files under the same open source license sees very favorable.
&lt;br&gt;&amp;gt;&amp;gt; If I can make it happen, it may take until the end of October for the
&lt;br&gt;&amp;gt;&amp;gt; open source project to go live. I am less then a week away from my
&lt;br&gt;&amp;gt;&amp;gt; annual pronghorn antelope hunt, which involves driving from California
&lt;br&gt;&amp;gt;&amp;gt; to Wyoming, and after that I am attending IUC33. See:
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://www.unicodeconference.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.unicodeconference.org/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I am giving two presentations, and just started working on them.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; In any case, I will keep you posted.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; How is the open sourcing of Adobe-Japan1-UCS2, GBK-EUC-UCS2, Adobe-GB1-UCS2, 
&lt;br&gt;&amp;gt; GBpc-EUC-UCS2, etc. progressing?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Albert
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Regards...
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; -- Ken
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; On 2009/09/23, at 16:25, Karl Berry wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi Ken,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; GBK-EUC-UCS2, Adobe-GB1-UCS2, GBpc-EUC-UCS2, etc. Are they
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; If these Acrobat-specific mapping files are to be placed under the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; same open source license,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; That would be very desirable.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; I will need to work with the Acrobat development team. I would
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; prefer that they be included in a separate open source project.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; However it works best for you.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; We greatly appreciate all your efforts!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Karl
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Freetype-devel mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26702820&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26702820&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fw%3A-%22CMap-Resources%22-open-source-project-tp25563551p26702820.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26637773</id>
	<title>Fwd: FreeType patented bytecode interpreter now in rawhide</title>
	<published>2009-12-03T16:14:03Z</published>
	<updated>2009-12-03T16:14:03Z</updated>
	<author>
		<name>Behdad Esfahbod-7</name>
	</author>
	<content type="html">FYI.
&lt;br&gt;&lt;br&gt;-------- Original Message --------
&lt;br&gt;Subject: FreeType patented bytecode interpreter now in rawhide
&lt;br&gt;Date: Thu, 03 Dec 2009 19:13:42 -0500
&lt;br&gt;From: Behdad Esfahbod &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26637773&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;behdad@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: Development discussions related to Fedora &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26637773&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fedora-devel-list@...&lt;/a&gt;&amp;gt;, 
&lt;br&gt;fedora-fonts-list &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26637773&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fedora-fonts-list@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Since the patents covering the TrueType bytecode interpreter expired at the
&lt;br&gt;end of October, I've now built FreeType in rawhide with that part of code enabled.
&lt;br&gt;&lt;br&gt;Note that the subpixel stuff remains disabled as it was.
&lt;br&gt;&lt;br&gt;behdad
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26637773&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fwd%3A-FreeType-patented-bytecode-interpreter-now-in-rawhide-tp26637773p26637773.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26587141</id>
	<title>Re: Free tyep font - query</title>
	<published>2009-11-30T22:09:29Z</published>
	<updated>2009-11-30T22:09:29Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; (1) We couldn't be successful in getting display of more than one
&lt;br&gt;&amp;gt; character. &amp;nbsp;The characters gets overlapped.
&lt;br&gt;&lt;br&gt;Uh, oh, this is basic programming... &amp;nbsp;You've modified the source
&lt;br&gt;without thinking:
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;draw_bitmap( FT_Bitmap* &amp;nbsp;bitmap,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FT_Int &amp;nbsp; &amp;nbsp; &amp;nbsp;x,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FT_Int &amp;nbsp; &amp;nbsp; &amp;nbsp;y)
&lt;br&gt;&amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp;FT_Int &amp;nbsp;i, j, p, q;
&lt;br&gt;&amp;nbsp; &amp;nbsp;FT_Int &amp;nbsp;x_max = x + bitmap-&amp;gt;width;
&lt;br&gt;&amp;nbsp; &amp;nbsp;FT_Int &amp;nbsp;y_max = y + bitmap-&amp;gt;rows;
&lt;br&gt;&lt;br&gt;-
&lt;br&gt;+ &amp;nbsp;width = bitmap-&amp;gt;width;
&lt;br&gt;+ &amp;nbsp;rows = bitmap-&amp;gt;rows;
&lt;br&gt;&amp;nbsp; &amp;nbsp;for ( i = x, p = 0; i &amp;lt; x_max; i++, p++ )
&lt;br&gt;&amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;for ( j = y, q = 0; j &amp;lt; y_max; j++, q++ )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if ( i &amp;lt; 0 &amp;nbsp; &amp;nbsp; &amp;nbsp;|| j &amp;lt; 0 &amp;nbsp; &amp;nbsp; &amp;nbsp; ||
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; i &amp;gt;= WIDTH || j &amp;gt;= HEIGHT )
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;continue;
&lt;br&gt;&lt;br&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp;image[j][i] |= bitmap-&amp;gt;buffer[q * bitmap-&amp;gt;width + p];
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;image[q][p] |= bitmap-&amp;gt;buffer[q * bitmap-&amp;gt;width + p]; &amp;nbsp;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; wrong!
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&lt;br&gt;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp;printf(&amp;quot;\n Bitmap Width %d&amp;quot;,width);
&lt;br&gt;+ &amp;nbsp;printf(&amp;quot;\n Bitmap Height %d&amp;quot;,rows);
&lt;br&gt;+ &amp;nbsp;printf(&amp;quot;\n Width %d&amp;quot;,p);
&lt;br&gt;+ &amp;nbsp;printf(&amp;quot;\n Height %d\n&amp;quot;,q);
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;The marked line causes your problems since you ignore any offset given
&lt;br&gt;by x and y.
&lt;br&gt;&lt;br&gt;&amp;gt; (2) Since height and width of each character gets varied, how the
&lt;br&gt;&amp;gt; starting position of drawing the next character be found.
&lt;br&gt;&lt;br&gt;The original example1.c code works just fine and does the expected!
&lt;br&gt;Why not checking it carefully? &amp;nbsp;The position of the next glyph is
&lt;br&gt;controlled by the last glyph's advance width (and height). &amp;nbsp;All these
&lt;br&gt;details are discussed in the tutorial and the other documentation
&lt;br&gt;files.
&lt;br&gt;&lt;br&gt;&amp;gt; It will be helpful if you support us as early as possible.
&lt;br&gt;&lt;br&gt;As others have already mentioned, this attitude is inappropriate for a
&lt;br&gt;library which you are using for free, without any fees, and where
&lt;br&gt;everyone is working as a volunteer in his sparetime.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26587141&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-tyep-font---query-tp26578684p26587141.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26580076</id>
	<title>Re: Free tyep font - query</title>
	<published>2009-11-30T10:37:30Z</published>
	<updated>2009-11-30T10:37:30Z</updated>
	<author>
		<name>Dmitry Timoshkov-2</name>
	</author>
	<content type="html">&amp;quot;jeyasathya&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580076&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Jeyasathya.j@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; It will be helpful if you support us as early as possible. Kindly let me
&lt;br&gt;&amp;gt; know if queries is not clear.
&lt;br&gt;&lt;br&gt;This is not really a place for this kind of queries. Freetype project
&lt;br&gt;already provides you with sample code and documentation. If you can't
&lt;br&gt;understand what that code does or how to change it for your own needs
&lt;br&gt;that's a different problem which doesn't belong here.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Dmitry.
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26580076&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-tyep-font---query-tp26578684p26580076.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26578684</id>
	<title>Free tyep font - query</title>
	<published>2009-11-30T05:34:58Z</published>
	<updated>2009-11-30T05:34:58Z</updated>
	<author>
		<name>jeyasathya</name>
	</author>
	<content type="html">&lt;html xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot; xmlns:w=&quot;urn:schemas-microsoft-com:office:word&quot; xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;

&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=us-ascii&quot;&gt;
&lt;meta name=Generator content=&quot;Microsoft Word 11 (filtered medium)&quot;&gt;


&lt;/head&gt;

&lt;body lang=EN-US link=blue vlink=purple&gt;

&lt;div class=Section1&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Dear all,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;We are using True type Font library delivered by you for our
project. As a first step we are using VC++.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;By using the exampl1.c file we have got display of a single
character. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Could you please give your valuable suggestions for the
following queries?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;(1) We couldn't be successful in getting display of more
than one character. The characters gets &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;overlapped.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;(2) Since height and width of each character gets varied, how
the starting position of drawing the next character be found.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;It will be helpful if you support us as early as possible. Kindly
let me know if queries is not clear.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Note: I have attached the example1.c file for your reference.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Thanks and Regards&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;p class=MsoNormal&gt;&lt;font size=2 face=Arial&gt;&lt;span style='font-size:10.0pt;
font-family:Arial'&gt;Jeyasathya&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;

&lt;/div&gt;

&lt;/body&gt;

&lt;/html&gt;
&lt;br /&gt; &lt;br /&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26578684&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;example1.c&lt;/strong&gt; (4K) &lt;a href=&quot;http://old.nabble.com/attachment/26578684/0/example1.c&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Free-tyep-font---query-tp26578684p26578684.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526654</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-26T01:31:44Z</published>
	<updated>2009-11-26T01:31:44Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">On Wed, 25 Nov 2009 19:26:05 -0500
&lt;br&gt;&amp;quot;Sean McBride&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526654&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;On 11/18/09 7:00 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526654&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; said:
&lt;br&gt;&amp;gt;&amp;gt;Sean, could you review the patch? Yet I don't have access
&lt;br&gt;&amp;gt;&amp;gt;to Mac OS X 10.6 machines, so I cannot check if this patch
&lt;br&gt;&amp;gt;&amp;gt;solves the problem you reported.
&lt;br&gt;&lt;br&gt;&amp;gt;I don't know anything about autoconf/automake or even shell script, so
&lt;br&gt;&amp;gt;I'm not too sure. :(
&lt;br&gt;&lt;br&gt;Oh, I'm sorry. I uploaded a tarball with improved configure at
&lt;br&gt;&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://home.hiroshima-u.ac.jp/mpsuzuki/freetype2-20091126_macslfix.tar.gz&lt;/a&gt;&amp;nbsp; 
&lt;br&gt;&lt;br&gt;&amp;nbsp; * it digs &amp;quot;freetype2&amp;quot; directory. please be careful not
&lt;br&gt;&amp;nbsp; * to overwrite your existing &amp;quot;freetype2&amp;quot; directory.
&lt;br&gt;&lt;br&gt;Please test it.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526654&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26526654.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26526619</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-26T01:27:46Z</published>
	<updated>2009-11-26T01:27:46Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">Dear Rowan,
&lt;br&gt;&lt;br&gt;Great Thank you for spending time to confirm!
&lt;br&gt;&lt;br&gt;On Thu, 26 Nov 2009 15:04:26 +1300
&lt;br&gt;Rowan Wookey &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526619&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;admin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;Here is the new output in the configure script
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;checking whether CFLAGS and LDFLAGS share -arch i386... no, copy to LDFLAGS
&lt;br&gt;&amp;gt;checking whether CFLAGS and LDFLAGS share -isysroot /Developer/SDKs/MacOSX10.5.sdk... no, copy to LDFLAGS
&lt;br&gt;&lt;br&gt;Good, it's what I designed.
&lt;br&gt;&lt;br&gt;&amp;gt;2) The patch looks like it has been word wrapped on line 47 to have &amp;quot; .*//'`&amp;quot; (without quotes) just move this up to line 46 preserving the space at the beginning so line 46 should be:
&lt;br&gt;&amp;gt;- &amp;nbsp; &amp;nbsp;isysroot_dir=`echo ${CFLAGS} | tr '\t' ' ' | sed 's/^.*-isysroot *//;s/ .*//'`
&lt;br&gt;&lt;br&gt;Oops, I should not put the patch in the text
&lt;br&gt;which can be folded by some MUA. I'm sorry
&lt;br&gt;for troubling you.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26526619&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26526619.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26524510</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-25T18:04:26Z</published>
	<updated>2009-11-25T18:04:26Z</updated>
	<author>
		<name>Rowan Wookey</name>
	</author>
	<content type="html">I can confirm this works. 
&lt;br&gt;&lt;br&gt;I configured as if building for OS X 10.5 as 32 bit, on &amp;nbsp;OS X 10.6 with the default compiler setting at 64 bit.
&lt;br&gt;&lt;br&gt;Here is the new output in the configure script
&lt;br&gt;&lt;br&gt;checking whether CFLAGS and LDFLAGS share -arch i386... no, copy to LDFLAGS
&lt;br&gt;checking whether CFLAGS and LDFLAGS share -isysroot /Developer/SDKs/MacOSX10.5.sdk... no, copy to LDFLAGS
&lt;br&gt;&lt;br&gt;A few notes
&lt;br&gt;1) I had to edit autogen.sh to allow autoconf 2.61 and aclocal 1.10 which are the versions supplied with OS X 10.6
&lt;br&gt;2) The patch looks like it has been word wrapped on line 47 to have &amp;quot; .*//'`&amp;quot; (without quotes) just move this up to line 46 preserving the space at the beginning so line 46 should be:
&lt;br&gt;- &amp;nbsp; &amp;nbsp;isysroot_dir=`echo ${CFLAGS} | tr '\t' ' ' | sed 's/^.*-isysroot *//;s/ .*//'`
&lt;br&gt;3)My CFLAGS were set to CFLAGS=&amp;quot;-arch i386 -pipe -Os -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5&amp;quot;
&lt;br&gt;4) file libfreetype.6.dylib outputs : &amp;quot;libfreetype.6.dylib: Mach-O dynamically linked shared library i386&amp;quot; which is correct.
&lt;br&gt;5) I used the latest development version from git.
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;&lt;br&gt;Rowan
&lt;br&gt;&lt;br&gt;On 26 Nov 2009, at 13:26, Sean McBride wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 11/18/09 7:00 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524510&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; said:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; I'm not sure if there is special
&lt;br&gt;&amp;gt;&amp;gt; requirement to use different &amp;quot;-arch XXX&amp;quot; or &amp;quot;-m32/-m64&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; options between CFLAGS &amp; LDFLAGS.
&lt;br&gt;&amp;gt;&amp;gt; 
&lt;br&gt;&amp;gt;&amp;gt; Sean, could you review the patch? Yet I don't have access
&lt;br&gt;&amp;gt;&amp;gt; to Mac OS X 10.6 machines, so I cannot check if this patch
&lt;br&gt;&amp;gt;&amp;gt; solves the problem you reported.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Sorry for the delayed reply.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I don't know anything about autoconf/automake or even shell script, so
&lt;br&gt;&amp;gt; I'm not too sure. :(
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But I do know that -m32 and -m64 are not used on OS X. &amp;nbsp;It's really just
&lt;br&gt;&amp;gt; -arch that controls that.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; ____________________________________________________________
&lt;br&gt;&amp;gt; Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524510&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;&amp;gt; Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26524510&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26524510.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26522673</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-25T16:26:05Z</published>
	<updated>2009-11-25T16:26:05Z</updated>
	<author>
		<name>Sean McBride</name>
	</author>
	<content type="html">On 11/18/09 7:00 PM, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26522673&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; said:
&lt;br&gt;&lt;br&gt;&amp;gt;I'm not sure if there is special
&lt;br&gt;&amp;gt;requirement to use different &amp;quot;-arch XXX&amp;quot; or &amp;quot;-m32/-m64&amp;quot;
&lt;br&gt;&amp;gt;options between CFLAGS &amp; LDFLAGS.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Sean, could you review the patch? Yet I don't have access
&lt;br&gt;&amp;gt;to Mac OS X 10.6 machines, so I cannot check if this patch
&lt;br&gt;&amp;gt;solves the problem you reported.
&lt;br&gt;&lt;br&gt;Sorry for the delayed reply.
&lt;br&gt;&lt;br&gt;I don't know anything about autoconf/automake or even shell script, so
&lt;br&gt;I'm not too sure. :(
&lt;br&gt;&lt;br&gt;But I do know that -m32 and -m64 are not used on OS X. &amp;nbsp;It's really just
&lt;br&gt;-arch that controls that.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;____________________________________________________________
&lt;br&gt;Sean McBride, B. Eng &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26522673&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sean@...&lt;/a&gt;
&lt;br&gt;Rogue Research &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;www.rogue-research.com
&lt;br&gt;Mac Software Developer &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Montréal, Québec, Canada
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26522673&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26522673.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26521801</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-25T15:00:36Z</published>
	<updated>2009-11-25T15:00:36Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&amp;gt; Attached is a proposal of patch for Mac OS X 10.6.
&lt;br&gt;&lt;br&gt;If you think this is the right way to go please commit.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26521801&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26521801.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26424854</id>
	<title>Cross compiling free type 2 for Arm development boards</title>
	<published>2009-11-19T02:39:03Z</published>
	<updated>2009-11-19T02:39:03Z</updated>
	<author>
		<name>Basil Saji</name>
	</author>
	<content type="html">Hi&lt;br&gt;&lt;br&gt;My name is Basil. I am trying to port the freetype library to a arm development board. I am using the arm cross compiler executable&lt;br&gt;arm-none-linux-gnueabi and i followed the instructions in INSTALL.CROSS but i am unable to create a configuration file for freetype.&lt;br&gt;

&lt;br&gt;This is the input i have given &lt;br&gt;basil@Bas:~/Desktop/Freetype/freetype-2.3.11$ ./configure --build=i686-pc-linux-gnu --host=arm-none-linux-gnueabi&lt;br&gt;&lt;br&gt;The output i got was&lt;br&gt;&lt;br&gt;FreeType build system -- automatic system detection&lt;br&gt;

&lt;br&gt;The following settings are used:&lt;br&gt;&lt;br&gt;  platform                    unix&lt;br&gt;  compiler                    cc&lt;br&gt;  configuration directory     ./builds/unix&lt;br&gt;  configuration rules         ./builds/unix/&lt;a href=&quot;http://unix.mk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;unix.mk&lt;/a&gt;&lt;br&gt;

&lt;br&gt;If this does not correspond to your system or settings please remove the file&lt;br&gt;`&lt;a href=&quot;http://config.mk&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;config.mk&lt;/a&gt;&amp;#39; from this directory then read the INSTALL file for help.&lt;br&gt;&lt;br&gt;Otherwise, simply type `make&amp;#39; again to build the library,&lt;br&gt;

or `make refdoc&amp;#39; to build the API reference (the latter needs python).&lt;br&gt;&lt;br&gt;cd builds/unix; ./configure  &amp;#39;--build=i686-pc-linux-gnu&amp;#39; &amp;#39;--host=arm-none-linux-gnueabi&amp;#39;&lt;br&gt;checking build system type... i686-pc-linux-gnu&lt;br&gt;

checking host system type... arm-none-linux-gnueabi&lt;br&gt;checking for arm-none-linux-gnueabi-gcc... arm-none-linux-gnueabi-gcc&lt;br&gt;checking for C compiler default output file name...&lt;br&gt;configure: error: in `/home/basil/Desktop/Freetype/freetype-2.3.11/builds/unix&amp;#39;:&lt;br&gt;

configure: error: C compiler cannot create executables&lt;br&gt;See `config.log&amp;#39; for more details.&lt;br&gt;make: *** [setup] Error 77&lt;br&gt;&lt;br&gt;Kindly let me know whether i am missing any step in the process&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;

-- &lt;br&gt;The end is only the beginning&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26424854&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cross-compiling-free-type-2-for-Arm-development-boards-tp26424854p26424854.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26405162</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-18T02:00:39Z</published>
	<updated>2009-11-18T02:00:39Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Sorry for my lated homework. Attached is a proposal of
&lt;br&gt;patch for Mac OS X 10.6. The patch itself is not easy
&lt;br&gt;to read. The patched script would be like following.
&lt;br&gt;It scans all token in CFLAGS, lookup -isysroot, -arch,
&lt;br&gt;-m32 and -m64. If they are not included in LDFLAGS
&lt;br&gt;(for -isysroot and -arch, arguments are also checked),
&lt;br&gt;they are copied to LDFLAGS.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; # Some options handling SDKs/archs in CFLAGS should be copied
&lt;br&gt;&amp;nbsp; &amp;nbsp; # to LDFLAGS. Apple TechNote 2137 recommends to include these
&lt;br&gt;&amp;nbsp; &amp;nbsp; # options in CFLAGS but not in LDFLAGS.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; set dummy ${CFLAGS}
&lt;br&gt;&amp;nbsp; &amp;nbsp; i=1
&lt;br&gt;&amp;nbsp; &amp;nbsp; while test $i -lt $#
&lt;br&gt;&amp;nbsp; &amp;nbsp; do
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; c=$1
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; case &amp;quot;${c}&amp;quot; in
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -isysroot|-arch) # options taking 1 argument
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a=$2
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_CHECKING([whether CFLAGS and LDFLAGS share ${c} ${a}])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if expr &amp;quot; ${LDFLAGS} &amp;quot; : &amp;quot;.* ${c} *${a}.*&amp;quot; &amp;gt; /dev/null
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_RESULT([yes])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_RESULT([no, copy to LDFLAGS])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LDFLAGS=&amp;quot;${LDFLAGS} ${c} ${a}&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; shift 1 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; -m32|-m64) # options taking no argument
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_RESULT([whether CFLAGS and LDFLAGS share ${c}])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if expr &amp;quot; ${LDFLAGS} &amp;quot; : &amp;quot;.* ${c} *${a}.*&amp;quot; &amp;gt; /dev/null
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_RESULT([yes])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AC_MSG_RESULT([no, copy to LDFLAGS])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LDFLAGS=&amp;quot;${LDFLAGS} ${c}&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # *)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # &amp;nbsp; AC_MSG_RESULT([${c} is not copied to LDFLAGS])
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # &amp;nbsp; ;; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; esac
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; shift 1 
&lt;br&gt;&amp;nbsp; &amp;nbsp; done
&lt;br&gt;&lt;br&gt;At present, I didn't restrict this hook to specific
&lt;br&gt;system. If it's better to restrict this hook to Mac OS X,
&lt;br&gt;please let me know. I'm not sure if there is special
&lt;br&gt;requirement to use different &amp;quot;-arch XXX&amp;quot; or &amp;quot;-m32/-m64&amp;quot;
&lt;br&gt;options between CFLAGS &amp; LDFLAGS.
&lt;br&gt;&lt;br&gt;Sean, could you review the patch? Yet I don't have access
&lt;br&gt;to Mac OS X 10.6 machines, so I cannot check if this patch
&lt;br&gt;solves the problem you reported.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;&lt;br&gt;diff --git a/builds/unix/configure.raw b/builds/unix/configure.raw
&lt;br&gt;index 8a99988..4ecd619 100644
&lt;br&gt;--- a/builds/unix/configure.raw
&lt;br&gt;+++ b/builds/unix/configure.raw
&lt;br&gt;@@ -230,30 +230,48 @@ if test x$with_zlib != xno &amp;&amp; test -n &amp;quot;$LIBZ&amp;quot;; then
&lt;br&gt;&amp;nbsp;fi
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-# check Apple's `-isysroot' option and duplicate it to LDFLAGS if required --
&lt;br&gt;-# Apple TechNote 2137 recommends to include it in CFLAGS but not in LDFLAGS
&lt;br&gt;-
&lt;br&gt;-AC_MSG_CHECKING([whether CFLAGS includes -isysroot option])
&lt;br&gt;-case &amp;quot;$CFLAGS&amp;quot; in
&lt;br&gt;-*sysroot* )
&lt;br&gt;- &amp;nbsp;AC_MSG_RESULT([yes])
&lt;br&gt;- &amp;nbsp;AC_MSG_CHECKING([whether LDFLAGS includes -isysroot option])
&lt;br&gt;- &amp;nbsp;case &amp;quot;$LDFLAGS&amp;quot; in
&lt;br&gt;- &amp;nbsp;*sysroot* )
&lt;br&gt;- &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([yes])
&lt;br&gt;+# Some options handling SDKs/archs in CFLAGS should be copied
&lt;br&gt;+# to LDFLAGS. Apple TechNote 2137 recommends to include these
&lt;br&gt;+# options in CFLAGS but not in LDFLAGS.
&lt;br&gt;+
&lt;br&gt;+save_config_args=$*
&lt;br&gt;+set dummy ${CFLAGS}
&lt;br&gt;+i=1
&lt;br&gt;+while test $i -lt $#
&lt;br&gt;+do
&lt;br&gt;+ &amp;nbsp;c=$1
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp;case &amp;quot;${c}&amp;quot; in
&lt;br&gt;+ &amp;nbsp;-isysroot|-arch) # options taking 1 argument
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;a=$2
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;AC_MSG_CHECKING([whether CFLAGS and LDFLAGS share ${c} ${a}])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if expr &amp;quot; ${LDFLAGS} &amp;quot; : &amp;quot;.* ${c} *${a}.*&amp;quot; &amp;gt; /dev/null
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;then
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([yes])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([no, copy to LDFLAGS])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;LDFLAGS=&amp;quot;${LDFLAGS} ${c} ${a}&amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;fi
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;shift 1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;;;
&lt;br&gt;- &amp;nbsp;*)
&lt;br&gt;- &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([no])
&lt;br&gt;- &amp;nbsp; &amp;nbsp;isysroot_dir=`echo ${CFLAGS} | tr '\t' ' ' | sed 's/^.*-isysroot *//;s/ .*//'`
&lt;br&gt;- &amp;nbsp; &amp;nbsp;AC_MSG_WARN(-isysroot ${isysroot_dir} is added to LDFLAGS)
&lt;br&gt;- &amp;nbsp; &amp;nbsp;LDFLAGS=&amp;quot;-isysroot ${isysroot_dir} ${LDFLAGS}&amp;quot;
&lt;br&gt;+ &amp;nbsp;-m32|-m64) # options taking no argument
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([whether CFLAGS and LDFLAGS share ${c}])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;if expr &amp;quot; ${LDFLAGS} &amp;quot; : &amp;quot;.* ${c} *${a}.*&amp;quot; &amp;gt; /dev/null
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;then
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([yes])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;else
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;AC_MSG_RESULT([no, copy to LDFLAGS])
&lt;br&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp;LDFLAGS=&amp;quot;${LDFLAGS} ${c}&amp;quot;
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;fi
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;;;
&lt;br&gt;+ &amp;nbsp;# *)
&lt;br&gt;+ &amp;nbsp;# &amp;nbsp; AC_MSG_RESULT([${c} is not copied to LDFLAGS])
&lt;br&gt;+ &amp;nbsp;# &amp;nbsp; ;;
&lt;br&gt;&amp;nbsp; &amp;nbsp;esac
&lt;br&gt;- &amp;nbsp;;;
&lt;br&gt;-*)
&lt;br&gt;- &amp;nbsp;AC_MSG_RESULT([no])
&lt;br&gt;- &amp;nbsp;;;
&lt;br&gt;-esac
&lt;br&gt;+
&lt;br&gt;+ &amp;nbsp;shift 1
&lt;br&gt;+done
&lt;br&gt;+set ${save_config_args}
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;# Whether to use Mac OS resource-based fonts.
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26405162&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26405162.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26364921</id>
	<title>Re: Re: [tex-live] Fw: &quot;CMap Resources&quot; open source project</title>
	<published>2009-11-15T15:42:16Z</published>
	<updated>2009-11-15T15:42:16Z</updated>
	<author>
		<name>Ken Lunde</name>
	</author>
	<content type="html">Albert,
&lt;br&gt;&lt;br&gt;Your email is *very* timely, because it was on Friday (11/13/2009) &amp;nbsp;
&lt;br&gt;that the Acrobat team gave the proverbial &amp;quot;green light&amp;quot; to open-source &amp;nbsp;
&lt;br&gt;these mapping resources.
&lt;br&gt;&lt;br&gt;Anyway, I plan to spend the better part of the coming week preparing &amp;nbsp;
&lt;br&gt;the files, which primarily amounts to adding the open source license &amp;nbsp;
&lt;br&gt;to the headers of each file. The tentative name of the open source &amp;nbsp;
&lt;br&gt;project is &amp;quot;Mapping Resources for PDF.&amp;quot;
&lt;br&gt;&lt;br&gt;BTW, you might find the following forum thread to be helpful:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://forums.adobe.com/message/2277338&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.adobe.com/message/2277338&lt;/a&gt;&lt;br&gt;&lt;br&gt;With best regards...
&lt;br&gt;&lt;br&gt;-- Ken
&lt;br&gt;&lt;br&gt;On 2009/11/15, at 15:12, Albert Astals Cid wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; A Dijous, 24 de setembre de 2009, Ken Lunde va escriure:
&lt;br&gt;&amp;gt;&amp;gt; Karl,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I discussed this with the Acrobat team today, and putting the Acrobat
&lt;br&gt;&amp;gt;&amp;gt; mapping files under the same open source license sees very favorable.
&lt;br&gt;&amp;gt;&amp;gt; If I can make it happen, it may take until the end of October for the
&lt;br&gt;&amp;gt;&amp;gt; open source project to go live. I am less then a week away from my
&lt;br&gt;&amp;gt;&amp;gt; annual pronghorn antelope hunt, which involves driving from &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; California
&lt;br&gt;&amp;gt;&amp;gt; to Wyoming, and after that I am attending IUC33. See:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &lt;a href=&quot;http://www.unicodeconference.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.unicodeconference.org/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I am giving two presentations, and just started working on them.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; In any case, I will keep you posted.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How is the open sourcing of Adobe-Japan1-UCS2, GBK-EUC-UCS2, Adobe- 
&lt;br&gt;&amp;gt; GB1-UCS2,
&lt;br&gt;&amp;gt; GBpc-EUC-UCS2, etc. progressing?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Albert
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Regards...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- Ken
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On 2009/09/23, at 16:25, Karl Berry wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Hi Ken,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; GBK-EUC-UCS2, Adobe-GB1-UCS2, GBpc-EUC-UCS2, etc. Are they
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; If these Acrobat-specific mapping files are to be placed under the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; same open source license,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; That would be very desirable.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; I will need to work with the Acrobat development team. I would
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; prefer that they be included in a separate open source project.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; However it works best for you.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; We greatly appreciate all your efforts!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Karl
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; Freetype-devel mailing list
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26364921&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26364921&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fw%3A-%22CMap-Resources%22-open-source-project-tp25563551p26364921.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26364683</id>
	<title>Re: Re: [tex-live] Fw: &quot;CMap Resources&quot; open source project</title>
	<published>2009-11-15T15:12:07Z</published>
	<updated>2009-11-15T15:12:07Z</updated>
	<author>
		<name>Albert Astals Cid-2</name>
	</author>
	<content type="html">A Dijous, 24 de setembre de 2009, Ken Lunde va escriure:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Karl,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I discussed this with the Acrobat team today, and putting the Acrobat
&lt;br&gt;&amp;gt; mapping files under the same open source license sees very favorable.
&lt;br&gt;&amp;gt; If I can make it happen, it may take until the end of October for the
&lt;br&gt;&amp;gt; open source project to go live. I am less then a week away from my
&lt;br&gt;&amp;gt; annual pronghorn antelope hunt, which involves driving from California
&lt;br&gt;&amp;gt; to Wyoming, and after that I am attending IUC33. See:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.unicodeconference.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.unicodeconference.org/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am giving two presentations, and just started working on them.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; In any case, I will keep you posted.
&lt;/div&gt;&lt;br&gt;How is the open sourcing of Adobe-Japan1-UCS2, GBK-EUC-UCS2, Adobe-GB1-UCS2, 
&lt;br&gt;GBpc-EUC-UCS2, etc. progressing?
&lt;br&gt;&lt;br&gt;Albert
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Regards...
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- Ken
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 2009/09/23, at 16:25, Karl Berry wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi Ken,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; GBK-EUC-UCS2, Adobe-GB1-UCS2, GBpc-EUC-UCS2, etc. Are they
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;If these Acrobat-specific mapping files are to be placed under the
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;same open source license,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; That would be very desirable.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;I will need to work with the Acrobat development team. I would
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;prefer that they be included in a separate open source project.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; However it works best for you.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; We greatly appreciate all your efforts!
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;gt; Karl
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Freetype-devel mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26364683&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26364683&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Fw%3A-%22CMap-Resources%22-open-source-project-tp25563551p26364683.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26337461</id>
	<title>Re: building freetype 2.3.11 on Mac OS X 10.6</title>
	<published>2009-11-13T06:29:01Z</published>
	<updated>2009-11-13T06:29:01Z</updated>
	<author>
		<name>mpsuzuki</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Thank you for helpful information. I will propose
&lt;br&gt;improved configure script in next week...
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;On Fri, 13 Nov 2009 08:16:03 +1300
&lt;br&gt;Rowan Wookey &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26337461&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;admin@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Try adding the arch flag to LDFLAGS that worked for me.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;~Rowan
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Freetype-devel mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26337461&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26337461&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/building-freetype-2.3.11-on-Mac-OS-X-10.6-tp26053864p26337461.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26336847</id>
	<title>Re: Porting FT2</title>
	<published>2009-11-13T05:48:45Z</published>
	<updated>2009-11-13T05:48:45Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; 1. I have compiled the &amp;quot;freetype-2.3.11&amp;quot; in VC++ it gives the out
&lt;br&gt;&amp;gt; put file as *.dlb. But I want it as *.exe
&lt;br&gt;&lt;br&gt;??? &amp;nbsp;FreeType is a *library*, not an executable!
&lt;br&gt;&lt;br&gt;&amp;gt; 2. I couldn't find any proper main function to start from there.
&lt;br&gt;&lt;br&gt;Of course not. &amp;nbsp;See my other reply.
&lt;br&gt;&lt;br&gt;&amp;gt; 3. Is there any main function for test purpose? &amp;nbsp;With the input file
&lt;br&gt;&amp;gt; path and character code and output as pixel data?
&lt;br&gt;&lt;br&gt;In the ft2demos bundle you can find a bunch of test programs. &amp;nbsp;The
&lt;br&gt;tutorial from www.freetype.org also provides some demo programs.
&lt;br&gt;&lt;br&gt;&amp;gt; 4. There are lots of APIs in the documentation. I am not getting
&lt;br&gt;&amp;gt; idea, what are all the APIs needed for simple true type font
&lt;br&gt;&amp;gt; display.
&lt;br&gt;&lt;br&gt;Uff. &amp;nbsp;You are joking, aren't you? &amp;nbsp;You are coming from India and you
&lt;br&gt;want `simple' TTF display? &amp;nbsp;For complex scripts like Devanagari you
&lt;br&gt;need a complete shaping engine, for example the ICU, Qt, or Pango
&lt;br&gt;libraries.
&lt;br&gt;&lt;br&gt;What about reading the tutorial first? &amp;nbsp;This shows examples of simple
&lt;br&gt;usage for non-complex scripts.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26336847&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Porting-FT2-tp26302071p26336847.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26336795</id>
	<title>Re: Porting FT2</title>
	<published>2009-11-13T05:45:02Z</published>
	<updated>2009-11-13T05:45:02Z</updated>
	<author>
		<name>Werner LEMBERG</name>
	</author>
	<content type="html">&lt;br&gt;&amp;gt; Also as it said in, &amp;quot;II. Modules list&amp;quot; of CUSTOMIZE, I have commented
&lt;br&gt;&amp;gt; manually every thing except
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	&amp;quot;FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class )&amp;quot;
&lt;br&gt;&lt;br&gt;This doesn't suffice. &amp;nbsp;You need a graphics renderer too, either the
&lt;br&gt;b/w rasterizer or the aliasing one.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt; 	I want one main function, with in that function what are all
&lt;br&gt;&amp;gt; should I call? &amp;nbsp;So I can give my file path name for getting pixel
&lt;br&gt;&amp;gt; data?
&lt;br&gt;&lt;br&gt;There isn't a single function. &amp;nbsp;You have to initialize FreeType, load
&lt;br&gt;a font, select a glyph, and finally finalize FreeType. &amp;nbsp;Please check
&lt;br&gt;the `ftview' demo program, for example.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Werner
&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26336795&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Porting-FT2-tp26302071p26336795.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26335076</id>
	<title>RE: Porting FT2</title>
	<published>2009-11-13T03:19:24Z</published>
	<updated>2009-11-13T03:19:24Z</updated>
	<author>
		<name>Kumar.K</name>
	</author>
	<content type="html">Dear all,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;Now I have planned to work with VC++ first then I will extend it to my own
&lt;br&gt;platform (VDSP environment/Blackfin processor), for that I am having the
&lt;br&gt;following basic doubts, please clarify...
&lt;br&gt;&lt;br&gt;My aim is I want to use TTF font for my project GUI display.
&lt;br&gt;&lt;br&gt;1. I have compiled the &amp;quot;freetype-2.3.11&amp;quot; in VC++ it gives the out put file
&lt;br&gt;as *.dlb. But I want it as *.exe
&lt;br&gt;&lt;br&gt;2. I couldn't find any proper main function to start from there. 
&lt;br&gt;&lt;br&gt;3. Is there any main function for test purpose? With the input file path and
&lt;br&gt;character code and output as pixel data?
&lt;br&gt;&lt;br&gt;4. There are lots of APIs in the documentation. I am not getting idea, what
&lt;br&gt;are all the APIs needed for simple true type font display.
&lt;br&gt;&lt;br&gt;Kindly advice.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Kumar.K
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mpsuzuki@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, November 12, 2009 3:29 PM
&lt;br&gt;To: Kumar.K
&lt;br&gt;Cc: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wl@...&lt;/a&gt;; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freetype-devel@...&lt;/a&gt;
&lt;br&gt;Subject: Re: [ft-devel] Porting FT2
&lt;br&gt;&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;The naming conventions of the files are:
&lt;br&gt;&lt;br&gt;When the version of freetype2 is L.M.N (in this case, L=2, M=3, N=11)
&lt;br&gt;&lt;br&gt;freetype-L.M.N.tar.gz		tar+gzip archived source (for Unix, Mac OS
&lt;br&gt;X)
&lt;br&gt;freetype-L.M.N.tar.gz.sig	checksum for tar+gzip source
&lt;br&gt;freetype-L.M.N.tar.bz2		tar+bzip2 archived (for Unix, Mac OS X)
&lt;br&gt;freetype-L.M.N.tar.bz2.sig	checksum for tar+bzip2 source
&lt;br&gt;ftLMN.zip			zip archived source (for Win32)
&lt;br&gt;ftLMN.zip.sig			checksum for zip archived source
&lt;br&gt;&lt;br&gt;ft2demos-L.M.N.tar.gz		tar+gzip archived demo program source
&lt;br&gt;ft2demos-L.M.N.tar.gz.sig	checksum for tar+gzip archived demo
&lt;br&gt;ft2demos-L.M.N.tar.bz2		tar+bzip2 archived demo program source
&lt;br&gt;ft2demos-L.M.N.tar.bz2.sig	checksum for tar+bzip2 archived demo
&lt;br&gt;ftdmoLMN.zip			zip archived demo program source
&lt;br&gt;ftdmoLMN.zip.sig		checksum for zip archived demo program
&lt;br&gt;source
&lt;br&gt;&lt;br&gt;freetype-doc-L.M.N.tar.gz	tar+gzip archived document
&lt;br&gt;freetype-doc-L.M.N.tar.gz.sig	checksum for tar+gzip archived document
&lt;br&gt;freetype-doc-L.M.N.tar.bz2	tar+bzip2 archived document
&lt;br&gt;freetype-doc-L.M.N.tar.bzip2.sig	checksum for tar+bzip2 archived
&lt;br&gt;document
&lt;br&gt;ftdocLMN.zip			zip archived document
&lt;br&gt;ftdocLMN.zip.sig		checksum for zip archived document
&lt;br&gt;&lt;br&gt;I don't know the detail development environment, and
&lt;br&gt;your favorite archiver, so I cannot tell you exact files.
&lt;br&gt;&lt;br&gt;If your development environment prefers the sources
&lt;br&gt;terminated with Win32-like CR/LF, zip files might be better.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;mpsuzuki
&lt;br&gt;&lt;br&gt;On Thu, 12 Nov 2009 14:41:32 +0530
&lt;br&gt;&amp;quot;Kumar.K&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kumar.k@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;Hi,
&lt;br&gt;&amp;gt;	I want the latest version and its documentation, demo and its
&lt;br&gt;&amp;gt;related files I found these following links,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://savannah.inetbridge.net/freetype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.inetbridge.net/freetype/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://sourceforge.net/projects/freetype/files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/projects/freetype/files/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Thu, 12 Nov 2009 14:41:32 +0530
&lt;br&gt;&amp;quot;Kumar.K&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kumar.k@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;Hi,
&lt;br&gt;&amp;gt;	I want the latest version and its documentation, demo and its
&lt;br&gt;&amp;gt;related files I found these following links,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://savannah.inetbridge.net/freetype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://savannah.inetbridge.net/freetype/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://sourceforge.net/projects/freetype/files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/projects/freetype/files/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;In the above page link there are lot of zip files and other format files.
&lt;br&gt;&amp;gt;Can you give me the correct links? 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Best regards,
&lt;br&gt;&amp;gt;Kumar.K
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-----Original Message-----
&lt;br&gt;&amp;gt;From: Werner LEMBERG [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wl@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt;Sent: Thursday, November 12, 2009 12:57 AM
&lt;br&gt;&amp;gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kumar.k@...&lt;/a&gt;
&lt;br&gt;&amp;gt;Cc: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;Subject: Re: [ft-devel] Porting FT2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I want to port FT 2 to my application. &amp;nbsp;We are working in analog
&lt;br&gt;&amp;gt;&amp;gt; devices Blackfin processor, and using its IDE -VDK. &amp;nbsp;I want to use
&lt;br&gt;&amp;gt;&amp;gt; only true type font for my project. &amp;nbsp;Can you tell where should I
&lt;br&gt;&amp;gt;&amp;gt; start? Actually I am struggling .
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Please read the files INSTALL.ANY and CUSTOMIZE (in the `docs'
&lt;br&gt;&amp;gt;subdirectory) and look up the mailing list archives of both freetype
&lt;br&gt;&amp;gt;and freetype-devel since this is a rather popular question.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;Werner
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;_______________________________________________
&lt;br&gt;&amp;gt;Freetype-devel mailing list
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Freetype-devel mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26335076&amp;i=10&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Freetype-devel@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://lists.nongnu.org/mailman/listinfo/freetype-devel&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.nongnu.org/mailman/listinfo/freetype-devel&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Porting-FT2-tp26302071p26335076.html" />
</entry>

</feed>
