diff options
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-02-25 22:55:05 -0500 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-03-15 14:22:49 +0000 |
commit | d7bf8c17eca8f8c89898a7794462c773c449e983 (patch) | |
tree | d18618fca85ca5f0c077032cc7b009344b60f663 /import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch | |
parent | e2b5abdc9f28cdf8578e5b9be803c8e697443c20 (diff) | |
download | blackbird-openbmc-d7bf8c17eca8f8c89898a7794462c773c449e983.tar.gz blackbird-openbmc-d7bf8c17eca8f8c89898a7794462c773c449e983.zip |
Yocto 2.4
Move OpenBMC to Yocto 2.4(rocko)
Tested: Built and verified Witherspoon and Palmetto images
Change-Id: I12057b18610d6fb0e6903c60213690301e9b0c67
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch')
-rw-r--r-- | import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch b/import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch deleted file mode 100644 index 02cb5ad75..000000000 --- a/import-layers/meta-openembedded/meta-oe/recipes-support/gd/files/fix-gcc-unused-functions.patch +++ /dev/null @@ -1,43 +0,0 @@ -gdft.c: remove functions that cause warnings about being unused - -Upstream-Status: Backport (Fixed in master branch) - -Signed-off-by: Derek Straka <derek@asterius.io> ---- git/src/gdft.c.orig 2016-08-12 10:20:41.418440091 -0400 -+++ git/src/gdft.c 2016-08-12 10:22:34.226442987 -0400 -@@ -139,16 +139,6 @@ - } - #else - --#ifndef HAVE_LIBFONTCONFIG --static char * font_pattern(char **fontpath, char *fontpattern) --{ -- (void)fontpath; -- (void)fontpattern; -- -- return "libgd was not built with FontConfig support\n"; --} --#endif /* HAVE_LIBFONTCONFIG */ -- - #include "gdcache.h" - /* 2.0.16 Christophe Thomas: starting with FreeType 2.1.6, this is - mandatory, and it has been supported for a long while. */ -@@ -446,16 +436,15 @@ - return (strcmp (a->fontlist, b->fontlist) == 0 && a->flags == b->flags); - } - -+#ifdef HAVE_LIBFONTCONFIG - static int useFontConfig(int flag) - { --#ifdef HAVE_LIBFONTCONFIG - if (fontConfigFlag) { - return (!(flag & gdFTEX_FONTPATHNAME)); - } --#endif - return flag & gdFTEX_FONTCONFIG; - } -- -+#endif - static void * - fontFetch (char **error, void *key) - { |