diff options
author | John Stebbins <[email protected]> | 2019-09-11 11:35:50 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-12 10:25:54 -0700 |
commit | 8a354a757bafb792b5189367e29cbda9a193f2b6 (patch) | |
tree | 2fcc8222fa020443a6f671d12feb4a833e1fc2bd /libhb/handbrake/preset.h | |
parent | 89dbcaf6c5d02169f1f9472dc64583a0b814fdc4 (diff) |
libhb: avoid harfbuzz header barrier collisions
harfbuz prefixes header barriers with HB_* which conflicts with some of
handbrakes header barriers. So use prefix HANDBRAKE_* for all of our
headers.
Diffstat (limited to 'libhb/handbrake/preset.h')
-rw-r--r-- | libhb/handbrake/preset.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhb/handbrake/preset.h b/libhb/handbrake/preset.h index abb188487..0c8f4b717 100644 --- a/libhb/handbrake/preset.h +++ b/libhb/handbrake/preset.h @@ -6,8 +6,8 @@ It may be used under the terms of the GNU General Public License v2. For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html */ -#if !defined(HB_PRESET_H) -#define HB_PRESET_H +#if !defined(HANDBRAKE_PRESET_H) +#define HANDBRAKE_PRESET_H #include "handbrake/common.h" #include "handbrake/hb_dict.h" @@ -200,4 +200,4 @@ char * hb_presets_package_json(const hb_value_t *presets); // and return as json string char * hb_presets_json_package(const char *json_presets); -#endif // HB_PRESET_H +#endif // HANDBRAKE_PRESET_H |