Re: [Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-09 Thread Albert Cahalan
On Sat, 2005-01-08 at 17:09, Martin Fuhrer wrote: Most fonts are being ignored, but a few are loading fine (primarly .ttf fonts). Here is a sampling of the errors I get from the other fonts: Bummer. Is there a newer version of FreeType that you could be using? I'm actually not

Re: [Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-08 Thread Albert Cahalan
On Sat, 2005-01-08 at 02:59, Bill Kendrick wrote: In setup(), we have the following that Albert C. recently added: if (!no_system_fonts) { #ifdef WIN32 // add Windows font dir here #else loadfonts(/usr/share/feh/fonts, 0); loadfonts(/usr/share/fonts, 0);

Re: [Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-08 Thread Albert Cahalan
On Sat, 2005-01-08 at 03:28, Martin Fuhrer wrote: Can Win32, Mac OS X and BeOS folks let me know what paths would be good to add for your respective OSes? The Mac OS X font directory are: /System/Library/Fonts (standard Mac OS X fonts) /Library/Fonts (administrator-installed

Re: [Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-08 Thread Karl Ove Hufthammer
Bill Kendrick [EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED]: Can Win32, Mac OS X and BeOS folks let me know what paths would be good to add for your respective OSes? The Windows fonts dir is: %SystemRoot%\Fonts -- Karl Ove Hufthammer ___

Re: [Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-08 Thread Albert Cahalan
On Sat, 2005-01-08 at 14:53, Martin Fuhrer wrote: On 8-Jan-05, at 2:38 AM, Albert Cahalan wrote: I have this now: #elif defined(__APPLE__) loadfonts(/System/Library/Fonts, 0); loadfonts(/Library/Fonts, 0); loadfonts(/usr/share/fonts, 0);

[Tuxpaint-dev] Paths for fonts on Win32, Mac OS X BeOS?

2005-01-07 Thread Bill Kendrick
In setup(), we have the following that Albert C. recently added: if (!no_system_fonts) { #ifdef WIN32 // add Windows font dir here #else loadfonts(/usr/share/feh/fonts, 0); loadfonts(/usr/share/fonts, 0); loadfonts(/usr/X11R6/lib/X11/fonts, 0);