misc/libfreetype/builds/amiga/include/freetype/config/ftconfig.h
author koda
Mon, 25 Apr 2011 01:46:54 +0200
changeset 5172 88f2e05288ba
permissions -rw-r--r--
aaand let's add freetype as well while we are at it other smaller changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
/*  ftconfig.h                                                             */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
/*    Amiga-specific configuration file (specification only).              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
/*  Copyright 2005, 2006, 2007 by                                          */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
/*  Werner Lemberg and Detlef Würkner.                                     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
/*  This file is part of the FreeType project, and may only be used,       */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
/*  modified, and distributed under the terms of the FreeType project      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
/*  this file you indicate that you have read the license and              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
/*  understand and accept it fully.                                        */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
/*
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
 * This is an example how to override the default FreeType2 header files
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
 * with Amiga-specific changes. When the compiler searches this directory
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
 * before the default directory, we can do some modifications.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
 *
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
 * Here we must change FT_EXPORT_DEF so that SAS/C does
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
 * generate the needed XDEFs.
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
#if 0
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
#define FT_EXPORT_DEF( x )  extern  x
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
#endif
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
#undef FT_EXPORT_DEF
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
#define FT_EXPORT_DEF( x )  x
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
/* Now include the original file */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
#ifndef __MORPHOS__
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
#ifdef __SASC
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
#include "FT:include/freetype/config/ftconfig.h"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
#else
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
#include "/FT/include/freetype/config/ftconfig.h"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
#endif
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
#else
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
/* We must define that, it seems that
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
 * lib/gcc-lib/ppc-morphos/2.95.3/include/syslimits.h is missing in
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
 * ppc-morphos-gcc-2.95.3-bin.tgz (gcc for 68k producing MorphOS PPC elf
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
 * binaries from http://www.morphos.de)
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
#define _LIBC_LIMITS_H_
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
#include "/FT/include/freetype/config/ftconfig.h"
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
#endif
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
/*
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
Local Variables:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
coding: latin-1
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
End:
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
*/