🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.7 KiB

  1. /****************************************************************************
  2. *
  3. * ftconfig.h
  4. *
  5. * VMS-specific configuration file (specification only).
  6. *
  7. * Copyright (C) 1996-2021 by
  8. * David Turner, Robert Wilhelm, and Werner Lemberg.
  9. *
  10. * This file is part of the FreeType project, and may only be used,
  11. * modified, and distributed under the terms of the FreeType project
  12. * license, LICENSE.TXT. By continuing to use, modify, or distribute
  13. * this file you indicate that you have read the license and
  14. * understand and accept it fully.
  15. *
  16. */
  17. /**************************************************************************
  18. *
  19. * This header file contains a number of macro definitions that are used by
  20. * the rest of the engine. Most of the macros here are automatically
  21. * determined at compile time, and you should not need to change it to port
  22. * FreeType, except to compile the library with a non-ANSI compiler.
  23. *
  24. * Note however that if some specific modifications are needed, we advise
  25. * you to place a modified copy in your build directory.
  26. *
  27. * The build directory is usually `builds/<system>`, and contains
  28. * system-specific files that are always included first when building the
  29. * library.
  30. *
  31. */
  32. #ifndef FTCONFIG_H_
  33. #define FTCONFIG_H_
  34. #include <ft2build.h>
  35. #include FT_CONFIG_OPTIONS_H
  36. #include FT_CONFIG_STANDARD_LIBRARY_H
  37. #define HAVE_UNISTD_H 1
  38. #define HAVE_FCNTL_H 1
  39. #define SIZEOF_INT 4
  40. #define SIZEOF_LONG 4
  41. #define FT_SIZEOF_INT 4
  42. #define FT_SIZEOF_LONG 4
  43. #include <freetype/config/integer-types.h>
  44. #include <freetype/config/public-macros.h>
  45. #include <freetype/config/mac-support.h>
  46. #endif /* FTCONFIG_H_ */
  47. /* END */