From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] fontconfig: fix static build
Date: Sun, 2 Dec 2018 14:00:52 +0100 [thread overview]
Message-ID: <20181202130052.GE2544@scaer> (raw)
In-Reply-To: <CAPi7W82qQ6TvHoRrD0L4YXUi=gqUK0gzZO4v0FzTyA=aYTLe9Q@mail.gmail.com>
Fabrice, All,
On 2018-12-02 13:50 +0100, Fabrice Fontaine spake thusly:
> Le dim. 2 d?c. 2018 ? 13:40, Yann E. MORIN <yann.morin.1998@free.fr> a ?crit :
> > On 2018-12-02 10:37 +0100, Fabrice Fontaine spake thusly:
> > > Retrieved patch from upstream to fix static build
> > >
> > > Fixes:
> > > - http://autobuild.buildroot.org/results/17e5f9ce5e7566f5a88abfd27b7db5614c1a3086
> > >
> > > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > > ---
> > > ...x-the-build-issue-with-enable-static.patch | 80 +++++++++++++++++++
> > > 1 file changed, 80 insertions(+)
> > > create mode 100644 package/fontconfig/0001-Fix-the-build-issue-with-enable-static.patch
> > >
> > > diff --git a/package/fontconfig/0001-Fix-the-build-issue-with-enable-static.patch b/package/fontconfig/0001-Fix-the-build-issue-with-enable-static.patch
> > > new file mode 100644
> > > index 0000000000..6104f1ed10
> > > --- /dev/null
> > > +++ b/package/fontconfig/0001-Fix-the-build-issue-with-enable-static.patch
> > > @@ -0,0 +1,80 @@
> > > +From 8208f99fa1676c42bfd8d74de3e9dac5366c150c Mon Sep 17 00:00:00 2001
> > > +From: Akira TAGOH <akira@tagoh.org>
> > > +Date: Mon, 3 Sep 2018 04:56:16 +0000
> > > +Subject: Fix the build issue with --enable-static
> > > +
> > > +Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/109
> > > +
> > > +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > > +[Retrieved from:
> > > +https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/109]
> >
> > Is it not better to backport and reference the actual commit, instead:
> > https://gitlab.freedesktop.org/fontconfig/fontconfig/commit/8208f99fa1676c42bfd8d74de3e9dac5366c150c
> OK, I will send a v2 with a link on the actual commit.
Please, note that the patch you used is not exactly the same as the one
in that commit.
So, it's not just about pointing to the commit, but also using it.
Regards,
Yann E. MORIN.
> > > +---
> > > + test/test-bz106632.c | 35 ++++++++++++-----------------------
> > > + 1 file changed, 12 insertions(+), 23 deletions(-)
> > > +
> > > +(limited to 'test')
> > > +
> > > +diff --git a/test/test-bz106632.c b/test/test-bz106632.c
> > > +index daa0c1e..2d67c2e 100644
> > > +--- a/test/test-bz106632.c
> > > ++++ b/test/test-bz106632.c
> > > +@@ -25,25 +25,26 @@
> > > + #ifdef HAVE_CONFIG_H
> > > + #include "config.h"
> > > + #endif
> > > ++#include <stdio.h>
> > > + #include <stdlib.h>
> > > ++#include <string.h>
> > > + #include <dirent.h>
> > > ++#include <unistd.h>
> > > ++#include <errno.h>
> > > + #ifndef HAVE_STRUCT_DIRENT_D_TYPE
> > > + #include <sys/types.h>
> > > + #include <sys/stat.h>
> > > +-#include <unistd.h>
> > > + #endif
> > > +-#include "fcstr.c"
> > > +-#undef FcConfigBuildFonts
> > > +-#undef FcConfigCreate
> > > +-#undef FcConfigGetCurrent
> > > +-#undef FcConfigParseAndLoadFromMemory
> > > +-#undef FcConfigUptoDate
> > > +-#undef FcFontList
> > > +-#undef FcInitReinitialize
> > > +-#undef FcPatternCreate
> > > +-#undef FcPatternDestroy
> > > + #include <fontconfig/fontconfig.h>
> > > +
> > > ++#ifdef _WIN32
> > > ++# define FC_DIR_SEPARATOR '\\'
> > > ++# define FC_DIR_SEPARATOR_S "\\"
> > > ++#else
> > > ++# define FC_DIR_SEPARATOR '/'
> > > ++# define FC_DIR_SEPARATOR_S "/"
> > > ++#endif
> > > ++
> > > + #ifdef HAVE_MKDTEMP
> > > + #define fc_mkdtemp mkdtemp
> > > + #else
> > > +@@ -154,18 +155,6 @@ unlink_dirs (const char *dir)
> > > + return ret;
> > > + }
> > > +
> > > +-FcChar8 *
> > > +-FcLangNormalize (const FcChar8 *lang)
> > > +-{
> > > +- return NULL;
> > > +-}
> > > +-
> > > +-FcChar8 *
> > > +-FcConfigHome (void)
> > > +-{
> > > +- return NULL;
> > > +-}
> > > +-
> > > + int
> > > + main (void)
> > > + {
> > > +--
> > > +cgit v1.1
> > > +
> > > --
> > > 2.17.1
> > >
> > > _______________________________________________
> > > buildroot mailing list
> > > buildroot at busybox.net
> > > http://lists.busybox.net/mailman/listinfo/buildroot
> >
> > --
> > .-----------------.--------------------.------------------.--------------------.
> > | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> > | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> > | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
> > | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> > '------------------------------^-------^------------------^--------------------'
> Best Regards,
>
> Fabrice
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
prev parent reply other threads:[~2018-12-02 13:00 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-02 9:37 [Buildroot] [PATCH 1/1] fontconfig: fix static build Fabrice Fontaine
2018-12-02 12:40 ` Yann E. MORIN
2018-12-02 12:50 ` Fabrice Fontaine
2018-12-02 13:00 ` Yann E. MORIN [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181202130052.GE2544@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox