Edit

kc3-lang/freetype/src/sfnt/rules.mk

Branch :

  • Show log

    Commit

  • Author : Werner Lemberg
    Date : 2005-05-23 21:33:02
    Hash : 92aa527a
    Message : * builds/amiga/makefile.os4 (WARNINGS), builds/compiler/gcc-dev.mk (CFLAGS), builds/compiler/gcc.mk (CFLAGS): Remove -fno-strict-aliasing. Say you have `(Foo*)x' and want to assign, pass, or return it as `(Bar*)'. If you simply say `x' or `(Bar*)x', then the C compiler would warn you that type casting incompatible pointer types breaks strict-aliasing. The solution is to cast to `(void*)' instead which is the generic pointer type, so the compiler knows that it should make no strict-aliasing assumption on `x'. But the problem with `(void*)x' is that seems like in C++, unlike C, `void*' is not a generic pointer type and assigning `void*' to `Bar*' without a cast causes an error. The solution is to cast to `Bar*' too, with `(Bar*)(void*)x' as the result -- this is what the patch does. * include/freetype/cache/ftccache.h (FTC_CACHE_LOOKUP_CMP), include/freetype/cache/ftcmru.h (FTC_MRULIST_LOOKUP_CMP): Remove cast on lvalue, use a temporary pointer instead. Cast temporarily to (void*) to not break strict aliasing. * include/freetype/internal/ftmemory.h (FT_MEM_ALLOC, FT_MEM_REALLOC, FT_MEM_QALLOC, FT_MEM_QREALLOC, FT_MEM_FREE), src/base/ftglyph.c (FT_Glyph_To_Bitmap): Cast temporarily to (void*) to not break strict aliasing. * src/base/ftinit.c (FT_USE_MODULE): Fix wrong type information. * builds/unix/configure.ac (XX_CFLAGS): Remove -fno-strict-aliasing. * src/sfnt/rules.mk (SFNT_DRV_SRC): Don't include ttsbit0.c -- it is currently loaded from ttsbit.c. Other formatting.

  • src/sfnt/rules.mk
  • #
    # FreeType 2 SFNT driver configuration rules
    #
    
    
    # Copyright 1996-2000, 2002, 2003, 2004, 2005 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.
    
    
    # SFNT driver directory
    #
    SFNT_DIR := $(SRC_DIR)/sfnt
    
    
    # compilation flags for the driver
    #
    SFNT_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(SFNT_DIR))
    
    
    # SFNT driver sources (i.e., C files)
    #
    SFNT_DRV_SRC := $(SFNT_DIR)/ttload.c   \
                    $(SFNT_DIR)/ttcmap.c   \
                    $(SFNT_DIR)/ttsbit.c   \
                    $(SFNT_DIR)/ttpost.c   \
                    $(SFNT_DIR)/ttkern.c   \
                    $(SFNT_DIR)/sfobjs.c   \
                    $(SFNT_DIR)/sfdriver.c
    
    # SFNT driver headers
    #
    SFNT_DRV_H := $(SFNT_DRV_SRC:%c=%h) \
                  $(SFNT_DIR)/sferrors.h
    
    
    # SFNT driver object(s)
    #
    #   SFNT_DRV_OBJ_M is used during `multi' builds.
    #   SFNT_DRV_OBJ_S is used during `single' builds.
    #
    SFNT_DRV_OBJ_M := $(SFNT_DRV_SRC:$(SFNT_DIR)/%.c=$(OBJ_DIR)/%.$O)
    SFNT_DRV_OBJ_S := $(OBJ_DIR)/sfnt.$O
    
    # SFNT driver source file for single build
    #
    SFNT_DRV_SRC_S := $(SFNT_DIR)/sfnt.c
    
    
    # SFNT driver - single object
    #
    $(SFNT_DRV_OBJ_S): $(SFNT_DRV_SRC_S) $(SFNT_DRV_SRC) \
                       $(FREETYPE_H) $(SFNT_DRV_H)
    	$(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(SFNT_DRV_SRC_S))
    
    
    # SFNT driver - multiple objects
    #
    $(OBJ_DIR)/%.$O: $(SFNT_DIR)/%.c $(FREETYPE_H) $(SFNT_DRV_H)
    	$(SFNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
    
    
    # update main driver object lists
    #
    DRV_OBJS_S += $(SFNT_DRV_OBJ_S)
    DRV_OBJS_M += $(SFNT_DRV_OBJ_M)
    
    
    # EOF