From: <col...@da...> - 2008-09-22 20:30:30
|
Hi guys, I'm new here so I don't know the status of the project too well. Have any of you tried to compile Freetype to MSIL? I've spent a couple of hours and had some amount of success. I don't know what to do about the calls to setjmp or longjmp so I've just dummied those out. After that I get about 15 unresolved externals that I'm struggling with. Its been a while since I looked at c++, I've been a c# man for a number of years now. Would anybody be interested in looking at what I have so far? Cheers Colin If you are not the intended addressee, please inform us immediately that you have received this e-mail in error, and delete it. We thank you for your cooperation. |
From: grover <sh...@mi...> - 2008-09-22 20:47:52
|
Hi Colin, Sure. We're always interested in help. I suppose what you're seeing are imports from the C runtime library. As we don't have one there needs to be a replacement of some sort there though. Mike > -----Ursprüngliche Nachricht----- > Von: col...@da... [mailto:col...@da...] > Gesendet: Montag, 22. September 2008 21:56 > An: sha...@li... > Betreff: [SharpOS Developers] Freetype > > > Hi guys, > > I'm new here so I don't know the status of the project too > well. Have any of you tried to compile Freetype to MSIL? I've > spent a couple of hours and had some amount of success. > > I don't know what to do about the calls to setjmpor longjmpso > I've just dummied those out. After that I get about 15 > unresolved externals that I'm struggling with. Its been a > while since I looked at c++, I've been a c# man for a number > of years now. Would anybody be interested in looking at what > I have so far? > > Cheers > > Colin > If you are not the intended addressee, please inform us > immediately that you have received this e-mail in error, and > delete it. We thank you for your cooperation. > > |
From: Maciej J. <him...@o2...> - 2008-09-22 21:48:57
Attachments:
basic_ttf_loading.tar.gz
|
If we get it to compile targeting cli:pure we can try decompiling it to c#, so it could be of some help in porting. But I fear it won't work too well... Btw the FreeType's license is original-with-advertising-clause-BSD-like (GPL incompatible) dual-licensed with GPLv2 (Linux someone? ;)). Is it possible to apply our GPL w/ CPE if we port it? Anyway, I have started TrueType loading. I attached what I have so far as archive if you want to take a look or continue working on it. Note there's no license header attached yet and there's some code from a Java LGPLed TTF editor in it! I can identify those parts later on if needed. ps. Apple's patents for ttf hinting are expiring in a year, am I wrong? What a complicated world we live in, mattaku... :D col...@da... wrote: > > Hi guys, > > I'm new here so I don't know the status of the project too well. Have > any of you tried to compile Freetype to MSIL? I've spent a couple of > hours and had some amount of success. > > I don't know what to do about the calls to setjmpor longjmpso I've > just dummied those out. After that I get about 15 unresolved externals > that I'm struggling with. Its been a while since I looked at c++, I've > been a c# man for a number of years now. Would anybody be interested > in looking at what I have so far? > > Cheers > > Colin > If you are not the intended addressee, please inform us immediately > that you have received this e-mail in error, and delete it. We thank > you for your cooperation. > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > SharpOS-Developers mailing list > Sha...@li... > https://lists.sourceforge.net/lists/listinfo/sharpos-developers > |
From: grover <sh...@mi...> - 2008-09-22 21:52:28
|
Hi Maciej, If we can target cli:pure, we could as well use the original sources for the time being. Thanks for the patent info, but what about the OpenType patents Adobe holds? I believe OpenType/TrueType are close in definition? Mike > -----Ursprüngliche Nachricht----- > Von: Maciej Jagiello [mailto:him...@o2...] > Gesendet: Montag, 22. September 2008 23:49 > An: sha...@li... > Betreff: Re: [SharpOS Developers] Freetype > > If we get it to compile targeting cli:pure we can try > decompiling it to c#, so it could be of some help in porting. > But I fear it won't work too well... > Btw the FreeType's license is > original-with-advertising-clause-BSD-like > (GPL incompatible) dual-licensed with GPLv2 (Linux someone? > ;)). Is it possible to apply our GPL w/ CPE if we port it? > Anyway, I have started TrueType loading. I attached what I > have so far as archive if you want to take a look or continue > working on it. Note there's no license header attached yet > and there's some code from a Java LGPLed TTF editor in it! I > can identify those parts later on if needed. > > ps. Apple's patents for ttf hinting are expiring in a year, > am I wrong? > What a complicated world we live in, mattaku... :D > > col...@da... wrote: > > > > Hi guys, > > > > I'm new here so I don't know the status of the project too > well. Have > > any of you tried to compile Freetype to MSIL? I've spent a > couple of > > hours and had some amount of success. > > > > I don't know what to do about the calls to setjmpor longjmpso I've > > just dummied those out. After that I get about 15 > unresolved externals > > that I'm struggling with. Its been a while since I looked > at c++, I've > > been a c# man for a number of years now. Would anybody be > interested > > in looking at what I have so far? > > > > Cheers > > > > Colin > > If you are not the intended addressee, please inform us immediately > > that you have received this e-mail in error, and delete it. > We thank > > you for your cooperation. > > > > > ---------------------------------------------------------------------- > > -- > > > > > ---------------------------------------------------------------------- > > --- This SF.Net email is sponsored by the Moblin Your Move > Developer's > > challenge Build the coolest Linux based applications with > Moblin SDK & > > win great prizes Grand prize is a trip for two to an Open > Source event > > anywhere in the world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > ---------------------------------------------------------------------- > > -- > > > > _______________________________________________ > > SharpOS-Developers mailing list > > Sha...@li... > > https://lists.sourceforge.net/lists/listinfo/sharpos-developers > > > > |
From: <col...@da...> - 2008-09-22 21:59:48
|
Is there any reason why you prefer C# over managed C++? sh...@mi... 09/22/2008 02:52 PM Please respond to sha...@li... To sha...@li... cc Subject Re: [SharpOS Developers] Freetype Hi Maciej, If we can target cli:pure, we could as well use the original sources for the time being. Thanks for the patent info, but what about the OpenType patents Adobe holds? I believe OpenType/TrueType are close in definition? Mike > -----Ursprüngliche Nachricht----- > Von: Maciej Jagiello [mailto:him...@o2...] > Gesendet: Montag, 22. September 2008 23:49 > An: sha...@li... > Betreff: Re: [SharpOS Developers] Freetype > > If we get it to compile targeting cli:pure we can try > decompiling it to c#, so it could be of some help in porting. > But I fear it won't work too well... > Btw the FreeType's license is > original-with-advertising-clause-BSD-like > (GPL incompatible) dual-licensed with GPLv2 (Linux someone? > ;)). Is it possible to apply our GPL w/ CPE if we port it? > Anyway, I have started TrueType loading. I attached what I > have so far as archive if you want to take a look or continue > working on it. Note there's no license header attached yet > and there's some code from a Java LGPLed TTF editor in it! I > can identify those parts later on if needed. > > ps. Apple's patents for ttf hinting are expiring in a year, > am I wrong? > What a complicated world we live in, mattaku... :D > > col...@da... wrote: > > > > Hi guys, > > > > I'm new here so I don't know the status of the project too > well. Have > > any of you tried to compile Freetype to MSIL? I've spent a > couple of > > hours and had some amount of success. > > > > I don't know what to do about the calls to setjmpor longjmpso I've > > just dummied those out. After that I get about 15 > unresolved externals > > that I'm struggling with. Its been a while since I looked > at c++, I've > > been a c# man for a number of years now. Would anybody be > interested > > in looking at what I have so far? > > > > Cheers > > > > Colin > > If you are not the intended addressee, please inform us immediately > > that you have received this e-mail in error, and delete it. > We thank > > you for your cooperation. > > > > > ---------------------------------------------------------------------- > > -- > > > > > ---------------------------------------------------------------------- > > --- This SF.Net email is sponsored by the Moblin Your Move > Developer's > > challenge Build the coolest Linux based applications with > Moblin SDK & > > win great prizes Grand prize is a trip for two to an Open > Source event > > anywhere in the world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > ---------------------------------------------------------------------- > > -- > > > > _______________________________________________ > > SharpOS-Developers mailing list > > Sha...@li... > > https://lists.sourceforge.net/lists/listinfo/sharpos-developers > > > > ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ SharpOS-Developers mailing list Sha...@li... https://lists.sourceforge.net/lists/listinfo/sharpos-developers If you are not the intended addressee, please inform us immediately that you have received this e-mail in error, and delete it. We thank you for your cooperation. |
From: grover <sh...@mi...> - 2008-09-22 22:08:46
|
It is just a preference. C# is the language of choice for .NET and I'd say most .NET devs are familiar with C#. Maintaining a C++/CLI project is possible, but not everyone is capable of doing so. Finally some of us do not want to reuse legacy code... Mike > -----Ursprüngliche Nachricht----- > Von: col...@da... [mailto:col...@da...] > Gesendet: Dienstag, 23. September 2008 00:00 > An: sha...@li... > Cc: sha...@li... > Betreff: Re: [SharpOS Developers] Freetype > > > Is there any reason why you prefer C# over managed C++? > > > > > sh...@mi... > > 09/22/2008 02:52 PM > Please respond to > sha...@li... > > To > sha...@li... > cc > Subject > Re: [SharpOS Developers] Freetype > > > > > > > Hi Maciej, > > If we can target cli:pure, we could as well use the original > sources for the time being. > > Thanks for the patent info, but what about the OpenType > patents Adobe holds? I believe OpenType/TrueType are close in > definition? > > Mike > > > -----Ursprüngliche Nachricht----- > > Von: Maciej Jagiello [mailto:him...@o2...] > > Gesendet: Montag, 22. September 2008 23:49 > > An: sha...@li... > > Betreff: Re: [SharpOS Developers] Freetype > > > > If we get it to compile targeting cli:pure we can try > decompiling it > > to c#, so it could be of some help in porting. > > But I fear it won't work too well... > > Btw the FreeType's license is > > original-with-advertising-clause-BSD-like > > (GPL incompatible) dual-licensed with GPLv2 (Linux someone? > > ;)). Is it possible to apply our GPL w/ CPE if we port it? > > Anyway, I have started TrueType loading. I attached what I > have so far > > as archive if you want to take a look or continue working > on it. Note > > there's no license header attached yet and there's some code from a > > Java LGPLed TTF editor in it! I can identify those parts > later on if > > needed. > > > > ps. Apple's patents for ttf hinting are expiring in a year, am I > > wrong? > > What a complicated world we live in, mattaku... :D > > > > col...@da... wrote: > > > > > > Hi guys, > > > > > > I'm new here so I don't know the status of the project too > > well. Have > > > any of you tried to compile Freetype to MSIL? I've spent a > > couple of > > > hours and had some amount of success. > > > > > > I don't know what to do about the calls to setjmpor > longjmpso I've > > > just dummied those out. After that I get about 15 > > unresolved externals > > > that I'm struggling with. Its been a while since I looked > > at c++, I've > > > been a c# man for a number of years now. Would anybody be > > interested > > > in looking at what I have so far? > > > > > > Cheers > > > > > > Colin > > > If you are not the intended addressee, please inform us > immediately > > > that you have received this e-mail in error, and delete it. > > We thank > > > you for your cooperation. > > > > > > > > > ---------------------------------------------------------------------- > > > -- > > > > > > > > > ---------------------------------------------------------------------- > > > --- This SF.Net email is sponsored by the Moblin Your Move > > Developer's > > > challenge Build the coolest Linux based applications with > > Moblin SDK & > > > win great prizes Grand prize is a trip for two to an Open > > Source event > > > anywhere in the world > > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > > > > > ---------------------------------------------------------------------- > > > -- > > > > > > _______________________________________________ > > > SharpOS-Developers mailing list > > > Sha...@li... > > > https://lists.sourceforge.net/lists/listinfo/sharpos-developers > > > > > > > > > > -------------------------------------------------------------- > ----------- > This SF.Net email is sponsored by the Moblin Your Move > Developer's challenge Build the coolest Linux based > applications with Moblin SDK & win great prizes Grand prize > is a trip for two to an Open Source event anywhere in the > world http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > SharpOS-Developers mailing list > Sha...@li... > https://lists.sourceforge.net/lists/listinfo/sharpos-developers > > > If you are not the intended addressee, please inform us > immediately that you have received this e-mail in error, and > delete it. We thank you for your cooperation. > > |
From: Chad Z. H. a. K. <Chad@Hower.org> - 2008-09-22 23:01:11
|
> It is just a preference. C# is the language of choice for .NET and I'd While I prefer C#, and I find most Senior devs too, VB.NET accounts for about 65% of .NET development..... |