2019-05-11 08:53:38 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2019 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Facebook Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_CONFIG_HH
|
|
|
|
#define HB_CONFIG_HH
|
|
|
|
|
2019-05-11 09:06:57 +02:00
|
|
|
#if 0 /* Make test happy. */
|
|
|
|
#include "hb.hh"
|
|
|
|
#endif
|
2019-05-12 01:12:07 +02:00
|
|
|
|
2019-05-11 08:53:38 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2019-05-11 09:04:59 +02:00
|
|
|
#ifdef HB_TINY
|
2019-05-11 09:13:35 +02:00
|
|
|
#define HB_LEAN
|
2019-05-11 09:04:59 +02:00
|
|
|
#define HB_MINI
|
2019-05-12 20:05:24 +02:00
|
|
|
#define HB_NO_MT
|
2019-06-21 09:44:29 +02:00
|
|
|
#define HB_NO_UCD_UNASSIGNED
|
2019-05-14 08:43:45 +02:00
|
|
|
#ifndef NDEBUG
|
|
|
|
#define NDEBUG
|
|
|
|
#endif
|
2019-05-20 21:33:23 +02:00
|
|
|
#ifndef __OPTIMIZE_SIZE__
|
|
|
|
#define __OPTIMIZE_SIZE__
|
|
|
|
#endif
|
2019-05-11 09:13:35 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HB_LEAN
|
2019-05-11 09:37:01 +02:00
|
|
|
#define HB_DISABLE_DEPRECATED
|
2019-05-14 08:43:45 +02:00
|
|
|
#define HB_NDEBUG
|
2019-05-11 09:44:22 +02:00
|
|
|
#define HB_NO_ATEXIT
|
2019-06-05 08:08:06 +02:00
|
|
|
#define HB_NO_BUFFER_MESSAGE
|
2019-05-13 00:33:31 +02:00
|
|
|
#define HB_NO_BUFFER_SERIALIZE
|
2022-01-28 21:49:21 +01:00
|
|
|
#define HB_NO_BUFFER_VERIFY
|
2019-05-11 09:04:59 +02:00
|
|
|
#define HB_NO_BITMAP
|
|
|
|
#define HB_NO_CFF
|
2019-05-11 09:53:52 +02:00
|
|
|
#define HB_NO_COLOR
|
2020-01-28 10:04:47 +01:00
|
|
|
#define HB_NO_DRAW
|
2019-09-16 11:20:11 +02:00
|
|
|
#define HB_NO_ERRNO
|
2019-06-20 05:07:02 +02:00
|
|
|
#define HB_NO_FACE_COLLECT_UNICODES
|
2019-05-11 09:44:22 +02:00
|
|
|
#define HB_NO_GETENV
|
2019-06-20 04:33:15 +02:00
|
|
|
#define HB_NO_HINTING
|
2019-06-20 01:37:35 +02:00
|
|
|
#define HB_NO_LANGUAGE_PRIVATE_SUBTAG
|
2019-06-20 05:12:25 +02:00
|
|
|
#define HB_NO_LAYOUT_FEATURE_PARAMS
|
2019-06-20 05:34:29 +02:00
|
|
|
#define HB_NO_LAYOUT_COLLECT_GLYPHS
|
2019-05-13 00:56:25 +02:00
|
|
|
#define HB_NO_LAYOUT_UNUSED
|
2019-05-11 09:13:35 +02:00
|
|
|
#define HB_NO_MATH
|
2019-07-22 21:05:08 +02:00
|
|
|
#define HB_NO_META
|
2019-07-19 09:11:07 +02:00
|
|
|
#define HB_NO_METRICS
|
2019-06-10 23:03:09 +02:00
|
|
|
#define HB_NO_MMAP
|
2019-05-11 10:27:50 +02:00
|
|
|
#define HB_NO_NAME
|
2019-06-10 23:06:25 +02:00
|
|
|
#define HB_NO_OPEN
|
2019-06-10 13:18:28 +02:00
|
|
|
#define HB_NO_SETLOCALE
|
2019-06-20 04:33:15 +02:00
|
|
|
#define HB_NO_OT_FONT_GLYPH_NAMES
|
2019-06-20 01:57:48 +02:00
|
|
|
#define HB_NO_OT_SHAPE_FRACTIONS
|
2019-08-04 09:01:31 +02:00
|
|
|
#define HB_NO_STYLE
|
2019-05-13 00:56:25 +02:00
|
|
|
#define HB_NO_SUBSET_LAYOUT
|
2019-06-20 04:26:22 +02:00
|
|
|
#define HB_NO_VAR
|
2019-05-11 09:04:59 +02:00
|
|
|
#endif
|
2019-05-11 08:53:38 +02:00
|
|
|
|
2019-05-11 09:04:59 +02:00
|
|
|
#ifdef HB_MINI
|
|
|
|
#define HB_NO_AAT
|
2019-05-11 09:16:18 +02:00
|
|
|
#define HB_NO_LEGACY
|
2019-05-11 09:04:59 +02:00
|
|
|
#endif
|
2019-05-11 08:55:22 +02:00
|
|
|
|
2021-12-03 19:49:55 +01:00
|
|
|
#if defined(HAVE_CONFIG_OVERRIDE_H) || defined(HB_CONFIG_OVERRIDE_H)
|
|
|
|
#ifndef HB_CONFIG_OVERRIDE_H
|
|
|
|
#define HB_CONFIG_OVERRIDE_H "config-override.h"
|
|
|
|
#endif
|
|
|
|
#include HB_CONFIG_OVERRIDE_H
|
2021-03-19 22:10:50 +01:00
|
|
|
#endif
|
2019-06-18 05:35:04 +02:00
|
|
|
|
|
|
|
/* Closure of options. */
|
2019-05-11 08:55:22 +02:00
|
|
|
|
2019-05-11 09:37:01 +02:00
|
|
|
#ifdef HB_DISABLE_DEPRECATED
|
|
|
|
#define HB_IF_NOT_DEPRECATED(x)
|
|
|
|
#else
|
|
|
|
#define HB_IF_NOT_DEPRECATED(x) x
|
|
|
|
#endif
|
|
|
|
|
2019-05-11 08:55:22 +02:00
|
|
|
#ifdef HB_NO_AAT
|
2019-05-11 10:24:23 +02:00
|
|
|
#define HB_NO_OT_NAME_LANGUAGE_AAT
|
2019-06-26 22:31:01 +02:00
|
|
|
#define HB_NO_AAT_SHAPE
|
2019-05-11 08:55:22 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HB_NO_BITMAP
|
|
|
|
#define HB_NO_OT_FONT_BITMAP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HB_NO_CFF
|
|
|
|
#define HB_NO_OT_FONT_CFF
|
|
|
|
#define HB_NO_SUBSET_CFF
|
|
|
|
#endif
|
|
|
|
|
2019-05-13 00:47:46 +02:00
|
|
|
#ifdef HB_NO_GETENV
|
|
|
|
#define HB_NO_UNISCRIBE_BUG_COMPATIBLE
|
|
|
|
#endif
|
|
|
|
|
2019-05-11 09:16:18 +02:00
|
|
|
#ifdef HB_NO_LEGACY
|
2019-06-20 04:50:54 +02:00
|
|
|
#define HB_NO_CMAP_LEGACY_SUBTABLES
|
2019-06-18 05:29:29 +02:00
|
|
|
#define HB_NO_FALLBACK_SHAPE
|
2019-06-20 01:24:51 +02:00
|
|
|
#define HB_NO_OT_KERN
|
2021-06-05 06:33:16 +02:00
|
|
|
#define HB_NO_OT_LAYOUT_BLOCKLIST
|
2019-05-11 09:16:18 +02:00
|
|
|
#define HB_NO_OT_SHAPE_FALLBACK
|
|
|
|
#endif
|
|
|
|
|
2019-05-11 10:27:50 +02:00
|
|
|
#ifdef HB_NO_NAME
|
|
|
|
#define HB_NO_OT_NAME_LANGUAGE
|
|
|
|
#endif
|
|
|
|
|
2019-06-26 22:21:03 +02:00
|
|
|
#ifdef HB_NO_OT
|
2019-06-26 22:25:02 +02:00
|
|
|
#define HB_NO_OT_FONT
|
2019-06-26 22:29:58 +02:00
|
|
|
#define HB_NO_OT_LAYOUT
|
2019-06-26 22:49:42 +02:00
|
|
|
#define HB_NO_OT_TAG
|
2019-06-26 22:21:03 +02:00
|
|
|
#define HB_NO_OT_SHAPE
|
|
|
|
#endif
|
|
|
|
|
2019-06-26 22:31:51 +02:00
|
|
|
#ifdef HB_NO_OT_SHAPE
|
|
|
|
#define HB_NO_AAT_SHAPE
|
|
|
|
#endif
|
|
|
|
|
2019-05-11 09:16:18 +02:00
|
|
|
#ifdef HB_NO_OT_SHAPE_FALLBACK
|
2019-05-11 09:04:59 +02:00
|
|
|
#define HB_NO_OT_SHAPE_COMPLEX_ARABIC_FALLBACK
|
|
|
|
#define HB_NO_OT_SHAPE_COMPLEX_HEBREW_FALLBACK
|
|
|
|
#define HB_NO_OT_SHAPE_COMPLEX_THAI_FALLBACK
|
2019-05-11 09:47:20 +02:00
|
|
|
#define HB_NO_OT_SHAPE_COMPLEX_VOWEL_CONSTRAINTS
|
2019-05-11 09:04:59 +02:00
|
|
|
#endif
|
|
|
|
|
2019-05-14 08:43:45 +02:00
|
|
|
#ifdef NDEBUG
|
|
|
|
#ifndef HB_NDEBUG
|
|
|
|
#define HB_NDEBUG
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-05-20 21:33:23 +02:00
|
|
|
#ifdef __OPTIMIZE_SIZE__
|
|
|
|
#ifndef HB_OPTIMIZE_SIZE
|
|
|
|
#define HB_OPTIMIZE_SIZE
|
|
|
|
#endif
|
|
|
|
#endif
|
2019-05-11 08:55:22 +02:00
|
|
|
|
2019-05-12 01:12:07 +02:00
|
|
|
|
2019-05-11 08:53:38 +02:00
|
|
|
#endif /* HB_CONFIG_HH */
|