diff options
author | Lucian Muresan <lucianm@users.sourceforge.net> | 2013-02-22 21:33:58 +0100 |
---|---|---|
committer | Lucian Muresan <lucianm@users.sourceforge.net> | 2013-02-22 21:33:58 +0100 |
commit | 36e68bcba2e60808a1b629aea3640f8d8bec9c2d (patch) | |
tree | 63ab09bd3a6d228edb69132a3efb27cf2563b59b /glcdgraphics | |
parent | 008fb421980c4aa2e76b51093e7678c0661d127d (diff) | |
download | graphlcd-base-36e68bcba2e60808a1b629aea3640f8d8bec9c2d.tar.gz graphlcd-base-36e68bcba2e60808a1b629aea3640f8d8bec9c2d.tar.bz2 |
fixed build when compiling without FREETYPE2
Diffstat (limited to 'glcdgraphics')
-rw-r--r-- | glcdgraphics/font.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/glcdgraphics/font.c b/glcdgraphics/font.c index 24a44a0..9bbc1af 100644 --- a/glcdgraphics/font.c +++ b/glcdgraphics/font.c @@ -29,6 +29,8 @@ #include <ft2build.h> #include FT_FREETYPE_H #include <iconv.h> +#else +#include <string.h> #endif namespace GLCD |