Edit

kc3-lang/freetype/src/bzip2/Jamfile

Branch :

  • Show log

    Commit

  • Author : Joel Klinghed
    Date : 2010-12-31 16:59:33
    Hash : ed913c21
    Message : Add bzip2 compression support to handle *.pcf.bz2 files. * builds/unix/configure.raw: Test for libbz2 library. * devel/ftoption.h, include/freetype/config/ftoption.h (FT_CONFIG_OPTION_USE_BZIP2): Define. * include/freetype/config/ftheader.h (FT_BZIP2_H): Define. * include/freetype/ftbzip2.h: New file. * src/bzip2/*: New files. * src/pcf/pcf.h: s/gzip_/comp_/. * src/pcf/pcfdrvr.c: Include FT_BZIP2_H. s/gzip_/comp_/. (PCF_Face_Init): Handle bzip2 compressed files. * docs/formats.txt, modules.cfg: Updated.

  • src/bzip2/Jamfile
  • # FreeType 2 src/bzip2 Jamfile
    #
    # Copyright 2010 by
    # Joel Klinghed
    #
    # Based on src/lzw/Jamfile, Copyright 2004, 2006 by
    # David Turner, Robert Wilhelm, and Werner Lemberg.
    #
    # This file is part of the FreeType project, and may only be used, modified,
    # and distributed under the terms of the FreeType project license,
    # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
    # indicate that you have read the license and understand and accept it
    # fully.
    
    SubDir  FT2_TOP $(FT2_SRC_DIR) bzip2 ;
    
    Library  $(FT2_LIB) : ftbzip2.c ;
    
    # end of src/bzip2 Jamfile