• Show log

    Commit

  • Hash : 60b32e16
    Author : David Turner
    Date : 2002-11-06T22:32:54

    2002-11-05  David Turner  <david@freetype.org>
    
            * include/freetype/config/ftoption.h, src/gzip/ftgzip.c: added
            support for the FT_CONFIG_OPTION_SYSTEM_ZLIB option, used to specify
            the use of system-wide zlib.
    
            Note that this macro, as well as FT_CONFIG_OPTION_BYTECODE_INTERPRETER,
            is not #undef-ed anymore. This allows the build system to define them
            depending on the configuration (typically by adding -D flags at
            compile time).
    
            * src/sfnt/ttcmap0.c (tt_face_build_cmaps): removed compiler warnings
            in optimized mode relative to the "volatile" local variables. This was
            not a compiler bug after all, but the fact that a pointer to a volatile
            variable is not the same than a volatile pointer to a variable :-)
    
            the fix was to change  "volatile FT_Byte*  p"
            into                   "FT_Byte* volatile  p"
    
            * src/pfr/pfrload.c, src/pfr/pfrdrivr.c, src/gzip/inftrees.c: removed
            compiler warnings in optimized modes
    
            * src/gzip/*.[hc]: modified our ZLib copy in order to prevent exporting
            any zlib function names outside of the component. This prevents linking
            problems on some platforms, when applications want to link FreeType
            _and_ ZLib together.
    
    
    2002-11-05  Juliusz  <jch@pps.jussieu.fr>
    
            * src/psaux/psobjs.c (ps_table_add): modified increment loop in
            order to implement exponential behaviour
    

  • README

  •   Special notes to Unix users
      ===========================
    
      Please   read  the  file   "README.UNX",  it   contains  important
      information  regarding  the   installation  of  FreeType  on  Unix
      systems, especially GNU based operating systems like GNU/Linux.
    
      FreeType 2's library is called `libfreetype', FreeType 1's library
      is called `libttf'.  They are *not* compatible!
    
    
      FreeType 2.1.3
      ==============
    
      Please   read  the  docs/CHANGES   file,  it   contains  IMPORTANT
      INFORMATION.
    
      Read  the  files "docs/INSTALL"  or  "docs/BUILD" for installation
      instructions.
    
      Note  that the  FreeType 2  documentation  is now  available as  a
      separate package from our sites.  See:
    
        ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.1.3.tar.bz2
        ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.1.3.tar.gz
        ftp://ftp.freetype.org/pub/freetype2/ftdoc213.zip
    
    
      Reports
      =======
    
      Please  report  bugs  by  e-mail to  `devel@freetype.org'.   Don't
      forget to send  a detailed explanation of the  problem -- there is
      nothing worse  than receiving a  terse message that only  says "it
      doesn't work".
    
    
    
      Enjoy!
    
    
        The FreeType Team