Edit

kc3-lang/freetype/src/cff/Jamfile

Branch :

  • Show log

    Commit

  • Author : Werner Lemberg
    Date : 2003-12-26 07:26:08
    Hash : 80cfbd70
    Message : * src/base/fttrigon.c, src/base/ftgloadr.c: Inlude FT_INTERNAL_OBJECTS_H. * src/base/ftstroke.c (FT_Outline_GetInsideBorder, FT_Outline_GetOutsideBorder): s/or/o/ to make it compile with C++ compilers. * src/cache/ftcmru.c, include/freetype/cache/ftcmru.h: s/select/selection/ to avoid compiler warning. * src/cff/cffload.h: s/select/ftselect/ to avoid potential compiler warning. Formatting.

  • src/cff/Jamfile
  • # FreeType 2 src/cff Jamfile (c) 2001, 2002 David Turner
    #
    
    SubDir  FT2_TOP $(FT2_SRC_DIR) cff ;
    
    {
      local  _sources ;
    
      if $(FT2_MULTI)
      {
        _sources = cffdrivr cffgload cffload cffobjs cffparse cffcmap ;
      }
      else
      {
        _sources = cff ;
      }
    
      Library  $(FT2_LIB) : $(_sources).c ;
    }
    
    # end of src/cff Jamfile