diff options
author | Moonchild <moonchild@palemoon.org> | 2020-05-14 18:26:08 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-05-20 13:54:54 +0000 |
commit | b1851a4ad037f193a01f8700d52269e093eed35f (patch) | |
tree | 5dc621ffd7fbe191a6a22dd93dd94645087b6258 /gfx/graphite2/src/Code.cpp | |
parent | 935ce8fa8e50c7d043dda94b442fcdd5fcb8def5 (diff) | |
download | UXP-b1851a4ad037f193a01f8700d52269e093eed35f.tar UXP-b1851a4ad037f193a01f8700d52269e093eed35f.tar.gz UXP-b1851a4ad037f193a01f8700d52269e093eed35f.tar.lz UXP-b1851a4ad037f193a01f8700d52269e093eed35f.tar.xz UXP-b1851a4ad037f193a01f8700d52269e093eed35f.zip |
Issue #80 - de-unify and fix up gfx/graphite2
With de-unified building we have to re-apply the fix-up
for <cstdio>, and additionally the same for <cstring>
to prevent the compiler picking the wrong versions of
standard functions.
Diffstat (limited to 'gfx/graphite2/src/Code.cpp')
-rw-r--r-- | gfx/graphite2/src/Code.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gfx/graphite2/src/Code.cpp b/gfx/graphite2/src/Code.cpp index 92ba92379..119af9c85 100644 --- a/gfx/graphite2/src/Code.cpp +++ b/gfx/graphite2/src/Code.cpp @@ -32,7 +32,7 @@ of the License or (at your option) any later version. #include <cassert> #include <cstddef> #include <cstdlib> -#include <cstring> +#include <string.h> #include "graphite2/Segment.h" #include "inc/Code.h" #include "inc/Face.h" @@ -42,7 +42,7 @@ of the License or (at your option) any later version. #include "inc/Rule.h" #include "inc/Silf.h" -#include <cstdio> +#include <stdio.h> #ifdef NDEBUG #ifdef __GNUC__ |