* [ptxdist] [PATCH v2] libpng: version bump 1.2.54 -> 1.6.29
@ 2017-06-17 17:25 Clemens Gruber
2017-06-17 17:25 ` [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8 Clemens Gruber
0 siblings, 1 reply; 5+ messages in thread
From: Clemens Gruber @ 2017-06-17 17:25 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Also fix configure options.
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
Changes from v1:
- Forgot to remove a now obsolete patch.
...001-add-SYSROOT-handling-to-libpng-config.patch | 35 ----------------------
patches/libpng-1.2.54/series | 4 ---
rules/libpng.make | 18 +++++++----
3 files changed, 13 insertions(+), 44 deletions(-)
delete mode 100644 patches/libpng-1.2.54/0001-add-SYSROOT-handling-to-libpng-config.patch
delete mode 100644 patches/libpng-1.2.54/series
diff --git a/patches/libpng-1.2.54/0001-add-SYSROOT-handling-to-libpng-config.patch b/patches/libpng-1.2.54/0001-add-SYSROOT-handling-to-libpng-config.patch
deleted file mode 100644
index fd7890d8f..000000000
--- a/patches/libpng-1.2.54/0001-add-SYSROOT-handling-to-libpng-config.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From: Marc Kleine-Budde <mkl@pengutronix.de>
-Date: Wed, 18 Nov 2015 18:19:39 +0100
-Subject: [PATCH] add SYSROOT handling to libpng-config
-
-Upstream: https://sourceforge.net/p/libpng/feature-requests/17/
-
-Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
----
- scripts/libpng-config.in | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/scripts/libpng-config.in b/scripts/libpng-config.in
-index 7ae7d50f2065..a61f9a58047d 100755
---- a/scripts/libpng-config.in
-+++ b/scripts/libpng-config.in
-@@ -18,8 +18,8 @@ libdir="@libdir@"
- includedir="@includedir@/libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@"
- libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@"
- all_libs="-lpng@PNGLIB_MAJOR@@PNGLIB_MINOR@ @LIBS@"
--I_opts="-I${includedir}"
--L_opts="-L${libdir}"
-+I_opts="-I${SYSROOT}${includedir}"
-+L_opts="-L${SYSROOT}${libdir}"
- R_opts=""
- cppflags=""
- ccopts="@LIBPNG_NO_MMX@"
-@@ -59,7 +59,7 @@ while test $# -gt 0; do
- case "$1" in
-
- --prefix)
-- echo ${prefix}
-+ echo ${SYSROOT}${prefix}
- ;;
-
- --version)
diff --git a/patches/libpng-1.2.54/series b/patches/libpng-1.2.54/series
deleted file mode 100644
index 5c10bac9e..000000000
--- a/patches/libpng-1.2.54/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-add-SYSROOT-handling-to-libpng-config.patch
-# ad9e735a6e56ce6ad024d86b40f0020d - git-ptx-patches magic
diff --git a/rules/libpng.make b/rules/libpng.make
index f23d9543f..e15fe18b0 100644
--- a/rules/libpng.make
+++ b/rules/libpng.make
@@ -18,8 +18,8 @@ PACKAGES-$(PTXCONF_LIBPNG) += libpng
#
# Paths and names
#
-LIBPNG_VERSION := 1.2.54
-LIBPNG_MD5 := bbb7a7264f1c7d9c444fd16bf6f89832
+LIBPNG_VERSION := 1.6.29
+LIBPNG_MD5 := 3245dbd76ea91e1437507357b858ec97
LIBPNG := libpng-$(LIBPNG_VERSION)
LIBPNG_SUFFIX := tar.xz
LIBPNG_URL := $(call ptx/mirror, SF, libpng/$(LIBPNG).$(LIBPNG_SUFFIX))
@@ -31,9 +31,17 @@ LIBPNG_LICENSE := Zlib
# Prepare
# ----------------------------------------------------------------------------
-LIBPNG_AUTOCONF := \
+LIBPNG_CONF_TOOL:= autoconf
+LIBPNG_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
- --without-libpng-compat
+ --enable-unversioned-links \
+ --enable-unversioned-libpng-pc \
+ --enable-unversioned-libpng-config \
+ --enable-arm-neon=$(call ptx/ifdef, PTXCONF_ARCH_ARM_NEON, yes, no) \
+ --disable-mips-msa \
+ --$(call ptx/endis, PTXCONF_ARCH_X86)-intel-sse \
+ --disable-powerpc-vsx \
+ --with-binconfigs
# ----------------------------------------------------------------------------
# Target-Install
@@ -48,7 +56,7 @@ $(STATEDIR)/libpng.targetinstall:
@$(call install_fixup, libpng,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
@$(call install_fixup, libpng,DESCRIPTION,missing)
- @$(call install_lib, libpng, 0, 0, 0644, libpng12)
+ @$(call install_lib, libpng, 0, 0, 0644, libpng16)
@$(call install_finish, libpng)
--
2.13.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8
2017-06-17 17:25 [ptxdist] [PATCH v2] libpng: version bump 1.2.54 -> 1.6.29 Clemens Gruber
@ 2017-06-17 17:25 ` Clemens Gruber
2017-06-20 13:54 ` Michael Olbrich
0 siblings, 1 reply; 5+ messages in thread
From: Clemens Gruber @ 2017-06-17 17:25 UTC (permalink / raw)
To: ptxdist; +Cc: Clemens Gruber
Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
Changes from v1:
- Forgot to remove a now obsolete patch and autogen.sh link
...reetype-config-and-freetype2.pc-correctly.patch | 103 ---------------------
patches/freetype-2.6.3/autogen.sh | 4 -
patches/freetype-2.6.3/series | 4 -
rules/freetype.make | 15 ++-
4 files changed, 12 insertions(+), 114 deletions(-)
delete mode 100644 patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
delete mode 100755 patches/freetype-2.6.3/autogen.sh
delete mode 100644 patches/freetype-2.6.3/series
diff --git a/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch b/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
deleted file mode 100644
index a6a2272c1..000000000
--- a/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Wed, 20 Nov 2013 14:06:25 +0100
-Subject: [PATCH] generate freetype-config and freetype2.pc correctly
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- builds/unix/configure.ac | 4 +++-
- builds/unix/freetype-config.in | 12 ++++++------
- builds/unix/freetype2.in | 14 +++++++-------
- builds/unix/unix-def.in | 3 ---
- 4 files changed, 16 insertions(+), 17 deletions(-)
-
-diff --git a/builds/unix/configure.ac b/builds/unix/configure.ac
-index b568e51e04e2..cdb0df29d72f 100644
---- a/builds/unix/configure.ac
-+++ b/builds/unix/configure.ac
-@@ -1006,7 +1006,9 @@ AC_CONFIG_HEADERS([ftconfig.h:ftconfig.in],
- # and `builds/unix/unix-cc.mk' that will be used by the build system
- #
- AC_CONFIG_FILES([unix-cc.mk:unix-cc.in
-- unix-def.mk:unix-def.in])
-+ unix-def.mk:unix-def.in
-+ freetype-config:freetype-config.in
-+ freetype2.pc:freetype2.in])
-
- # re-generate the Jamfile to use libtool now
- #
-diff --git a/builds/unix/freetype-config.in b/builds/unix/freetype-config.in
-index f74707d5aea1..e18f5cd76e77 100644
---- a/builds/unix/freetype-config.in
-+++ b/builds/unix/freetype-config.in
-@@ -12,11 +12,11 @@
- LC_ALL=C
- export LC_ALL
-
--prefix="%prefix%"
--exec_prefix="%exec_prefix%"
-+prefix="@prefix@"
-+exec_prefix="@exec_prefix@"
- exec_prefix_set="no"
--includedir="%includedir%"
--libdir="%libdir%"
-+includedir="@includedir@"
-+libdir="@libdir@"
-
- usage()
- {
-@@ -74,7 +74,7 @@ while test $# -gt 0 ; do
- echo_exec_prefix=yes
- ;;
- --version)
-- echo %ft_version%
-+ echo @ft_version@
- exit 0
- ;;
- --ftversion)
-@@ -141,7 +141,7 @@ fi
-
- if test "$echo_libs" = "yes" ; then
- libs="-lfreetype"
-- staticlibs="%LIBSSTATIC_CONFIG%"
-+ staticlibs="@LIBSSTATIC_CONFIG@"
- if test "$show_static" = "yes" ; then
- libs="$staticlibs"
- fi
-diff --git a/builds/unix/freetype2.in b/builds/unix/freetype2.in
-index c4dfda4abcca..8c4d7e184293 100644
---- a/builds/unix/freetype2.in
-+++ b/builds/unix/freetype2.in
-@@ -1,14 +1,14 @@
--prefix=%prefix%
--exec_prefix=%exec_prefix%
--libdir=%libdir%
--includedir=%includedir%
-+prefix=@prefix@
-+exec_prefix=@exec_prefix@
-+libdir=@libdir@
-+includedir=@includedir@
-
- Name: FreeType 2
- URL: http://freetype.org
- Description: A free, high-quality, and portable font engine.
--Version: %ft_version%
-+Version: @ft_version@
- Requires:
--Requires.private: %REQUIRES_PRIVATE%
-+Requires.private: @REQUIRES_PRIVATE@
- Libs: -L${libdir} -lfreetype
--Libs.private: %LIBS_PRIVATE%
-+Libs.private: @LIBS_PRIVATE@
- Cflags: -I${includedir}/freetype2
-diff --git a/builds/unix/unix-def.in b/builds/unix/unix-def.in
-index f7b557fb4094..71bb39cb3959 100644
---- a/builds/unix/unix-def.in
-+++ b/builds/unix/unix-def.in
-@@ -142,7 +142,4 @@ $(OBJ_BUILD)/freetype2.pc: $(TOP_DIR)/builds/unix/freetype2.in
- chmod a-w $@.tmp
- mv $@.tmp $@
-
--all install: $(OBJ_BUILD)/freetype-config \
-- $(OBJ_BUILD)/freetype2.pc
--
- # EOF
diff --git a/patches/freetype-2.6.3/autogen.sh b/patches/freetype-2.6.3/autogen.sh
deleted file mode 100755
index 1056b101c..000000000
--- a/patches/freetype-2.6.3/autogen.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-cd builds/unix &&
-autoconf
diff --git a/patches/freetype-2.6.3/series b/patches/freetype-2.6.3/series
deleted file mode 100644
index ab166a354..000000000
--- a/patches/freetype-2.6.3/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-generate-freetype-config-and-freetype2.pc-correctly.patch
-# c59ef464a7fe3a60ef114485523f346e - git-ptx-patches magic
diff --git a/rules/freetype.make b/rules/freetype.make
index 2ee85ef15..c306f9466 100644
--- a/rules/freetype.make
+++ b/rules/freetype.make
@@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_FREETYPE) += freetype
#
# Paths and names
#
-FREETYPE_VERSION := 2.6.3
-FREETYPE_MD5 := 0037b25a8c090bc8a1218e867b32beb1
+FREETYPE_VERSION := 2.8
+FREETYPE_MD5 := 2413ac3eaf508ada019c63959ea81a92
FREETYPE := freetype-$(FREETYPE_VERSION)
FREETYPE_SUFFIX := tar.bz2
FREETYPE_SOURCE := $(SRCDIR)/$(FREETYPE).$(FREETYPE_SUFFIX)
@@ -46,10 +46,19 @@ FREETYPE_CONF_TOOL := autoconf
FREETYPE_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
--disable-static \
+ --disable-biarch-config \
+ $(GLOBAL_LARGE_FILE_OPTION) \
+ --enable-mmap \
--with-zlib \
--without-bzip2 \
--without-png \
- --without-harfbuzz
+ --without-harfbuzz \
+ --without-old-mac-fonts \
+ --without-fsspec \
+ --without-fsref \
+ --without-quickdraw-toolbox \
+ --without-quickdraw-carbon \
+ --without-ats
# ----------------------------------------------------------------------------
--
2.13.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8
2017-06-17 17:25 ` [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8 Clemens Gruber
@ 2017-06-20 13:54 ` Michael Olbrich
2017-06-20 14:50 ` Clemens Gruber
0 siblings, 1 reply; 5+ messages in thread
From: Michael Olbrich @ 2017-06-20 13:54 UTC (permalink / raw)
To: ptxdist
On Sat, Jun 17, 2017 at 07:25:06PM +0200, Clemens Gruber wrote:
> Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> ---
> Changes from v1:
> - Forgot to remove a now obsolete patch and autogen.sh link
>
> ...reetype-config-and-freetype2.pc-correctly.patch | 103 ---------------------
This patch is still needed in some way. Otherwise freetype-config is
broken.
Michael
> patches/freetype-2.6.3/autogen.sh | 4 -
> patches/freetype-2.6.3/series | 4 -
> rules/freetype.make | 15 ++-
> 4 files changed, 12 insertions(+), 114 deletions(-)
> delete mode 100644 patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
> delete mode 100755 patches/freetype-2.6.3/autogen.sh
> delete mode 100644 patches/freetype-2.6.3/series
>
> diff --git a/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch b/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
> deleted file mode 100644
> index a6a2272c1..000000000
> --- a/patches/freetype-2.6.3/0001-generate-freetype-config-and-freetype2.pc-correctly.patch
> +++ /dev/null
> @@ -1,103 +0,0 @@
> -From: Michael Olbrich <m.olbrich@pengutronix.de>
> -Date: Wed, 20 Nov 2013 14:06:25 +0100
> -Subject: [PATCH] generate freetype-config and freetype2.pc correctly
> -
> -Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
> ----
> - builds/unix/configure.ac | 4 +++-
> - builds/unix/freetype-config.in | 12 ++++++------
> - builds/unix/freetype2.in | 14 +++++++-------
> - builds/unix/unix-def.in | 3 ---
> - 4 files changed, 16 insertions(+), 17 deletions(-)
> -
> -diff --git a/builds/unix/configure.ac b/builds/unix/configure.ac
> -index b568e51e04e2..cdb0df29d72f 100644
> ---- a/builds/unix/configure.ac
> -+++ b/builds/unix/configure.ac
> -@@ -1006,7 +1006,9 @@ AC_CONFIG_HEADERS([ftconfig.h:ftconfig.in],
> - # and `builds/unix/unix-cc.mk' that will be used by the build system
> - #
> - AC_CONFIG_FILES([unix-cc.mk:unix-cc.in
> -- unix-def.mk:unix-def.in])
> -+ unix-def.mk:unix-def.in
> -+ freetype-config:freetype-config.in
> -+ freetype2.pc:freetype2.in])
> -
> - # re-generate the Jamfile to use libtool now
> - #
> -diff --git a/builds/unix/freetype-config.in b/builds/unix/freetype-config.in
> -index f74707d5aea1..e18f5cd76e77 100644
> ---- a/builds/unix/freetype-config.in
> -+++ b/builds/unix/freetype-config.in
> -@@ -12,11 +12,11 @@
> - LC_ALL=C
> - export LC_ALL
> -
> --prefix="%prefix%"
> --exec_prefix="%exec_prefix%"
> -+prefix="@prefix@"
> -+exec_prefix="@exec_prefix@"
> - exec_prefix_set="no"
> --includedir="%includedir%"
> --libdir="%libdir%"
> -+includedir="@includedir@"
> -+libdir="@libdir@"
> -
> - usage()
> - {
> -@@ -74,7 +74,7 @@ while test $# -gt 0 ; do
> - echo_exec_prefix=yes
> - ;;
> - --version)
> -- echo %ft_version%
> -+ echo @ft_version@
> - exit 0
> - ;;
> - --ftversion)
> -@@ -141,7 +141,7 @@ fi
> -
> - if test "$echo_libs" = "yes" ; then
> - libs="-lfreetype"
> -- staticlibs="%LIBSSTATIC_CONFIG%"
> -+ staticlibs="@LIBSSTATIC_CONFIG@"
> - if test "$show_static" = "yes" ; then
> - libs="$staticlibs"
> - fi
> -diff --git a/builds/unix/freetype2.in b/builds/unix/freetype2.in
> -index c4dfda4abcca..8c4d7e184293 100644
> ---- a/builds/unix/freetype2.in
> -+++ b/builds/unix/freetype2.in
> -@@ -1,14 +1,14 @@
> --prefix=%prefix%
> --exec_prefix=%exec_prefix%
> --libdir=%libdir%
> --includedir=%includedir%
> -+prefix=@prefix@
> -+exec_prefix=@exec_prefix@
> -+libdir=@libdir@
> -+includedir=@includedir@
> -
> - Name: FreeType 2
> - URL: http://freetype.org
> - Description: A free, high-quality, and portable font engine.
> --Version: %ft_version%
> -+Version: @ft_version@
> - Requires:
> --Requires.private: %REQUIRES_PRIVATE%
> -+Requires.private: @REQUIRES_PRIVATE@
> - Libs: -L${libdir} -lfreetype
> --Libs.private: %LIBS_PRIVATE%
> -+Libs.private: @LIBS_PRIVATE@
> - Cflags: -I${includedir}/freetype2
> -diff --git a/builds/unix/unix-def.in b/builds/unix/unix-def.in
> -index f7b557fb4094..71bb39cb3959 100644
> ---- a/builds/unix/unix-def.in
> -+++ b/builds/unix/unix-def.in
> -@@ -142,7 +142,4 @@ $(OBJ_BUILD)/freetype2.pc: $(TOP_DIR)/builds/unix/freetype2.in
> - chmod a-w $@.tmp
> - mv $@.tmp $@
> -
> --all install: $(OBJ_BUILD)/freetype-config \
> -- $(OBJ_BUILD)/freetype2.pc
> --
> - # EOF
> diff --git a/patches/freetype-2.6.3/autogen.sh b/patches/freetype-2.6.3/autogen.sh
> deleted file mode 100755
> index 1056b101c..000000000
> --- a/patches/freetype-2.6.3/autogen.sh
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -#!/bin/sh
> -
> -cd builds/unix &&
> -autoconf
> diff --git a/patches/freetype-2.6.3/series b/patches/freetype-2.6.3/series
> deleted file mode 100644
> index ab166a354..000000000
> --- a/patches/freetype-2.6.3/series
> +++ /dev/null
> @@ -1,4 +0,0 @@
> -# generated by git-ptx-patches
> -#tag:base --start-number 1
> -0001-generate-freetype-config-and-freetype2.pc-correctly.patch
> -# c59ef464a7fe3a60ef114485523f346e - git-ptx-patches magic
> diff --git a/rules/freetype.make b/rules/freetype.make
> index 2ee85ef15..c306f9466 100644
> --- a/rules/freetype.make
> +++ b/rules/freetype.make
> @@ -17,8 +17,8 @@ PACKAGES-$(PTXCONF_FREETYPE) += freetype
> #
> # Paths and names
> #
> -FREETYPE_VERSION := 2.6.3
> -FREETYPE_MD5 := 0037b25a8c090bc8a1218e867b32beb1
> +FREETYPE_VERSION := 2.8
> +FREETYPE_MD5 := 2413ac3eaf508ada019c63959ea81a92
> FREETYPE := freetype-$(FREETYPE_VERSION)
> FREETYPE_SUFFIX := tar.bz2
> FREETYPE_SOURCE := $(SRCDIR)/$(FREETYPE).$(FREETYPE_SUFFIX)
> @@ -46,10 +46,19 @@ FREETYPE_CONF_TOOL := autoconf
> FREETYPE_CONF_OPT := \
> $(CROSS_AUTOCONF_USR) \
> --disable-static \
> + --disable-biarch-config \
> + $(GLOBAL_LARGE_FILE_OPTION) \
> + --enable-mmap \
> --with-zlib \
> --without-bzip2 \
> --without-png \
> - --without-harfbuzz
> + --without-harfbuzz \
> + --without-old-mac-fonts \
> + --without-fsspec \
> + --without-fsref \
> + --without-quickdraw-toolbox \
> + --without-quickdraw-carbon \
> + --without-ats
>
>
> # ----------------------------------------------------------------------------
> --
> 2.13.1
>
>
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8
2017-06-20 13:54 ` Michael Olbrich
@ 2017-06-20 14:50 ` Clemens Gruber
2017-06-20 15:44 ` Michael Olbrich
0 siblings, 1 reply; 5+ messages in thread
From: Clemens Gruber @ 2017-06-20 14:50 UTC (permalink / raw)
To: ptxdist
On Tue, Jun 20, 2017 at 03:54:05PM +0200, Michael Olbrich wrote:
> On Sat, Jun 17, 2017 at 07:25:06PM +0200, Clemens Gruber wrote:
> > Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> > ---
> > Changes from v1:
> > - Forgot to remove a now obsolete patch and autogen.sh link
> >
> > ...reetype-config-and-freetype2.pc-correctly.patch | 103 ---------------------
>
> This patch is still needed in some way. Otherwise freetype-config is
> broken.
Hmm, wouldn't pkg-config be used instead? Did an application depending
on freetype break?
Anyway, I'll start preparing a v3. Probably better to have both working.
Clemens
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8
2017-06-20 14:50 ` Clemens Gruber
@ 2017-06-20 15:44 ` Michael Olbrich
0 siblings, 0 replies; 5+ messages in thread
From: Michael Olbrich @ 2017-06-20 15:44 UTC (permalink / raw)
To: ptxdist
On Tue, Jun 20, 2017 at 04:50:27PM +0200, Clemens Gruber wrote:
> On Tue, Jun 20, 2017 at 03:54:05PM +0200, Michael Olbrich wrote:
> > On Sat, Jun 17, 2017 at 07:25:06PM +0200, Clemens Gruber wrote:
> > > Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> > > ---
> > > Changes from v1:
> > > - Forgot to remove a now obsolete patch and autogen.sh link
> > >
> > > ...reetype-config-and-freetype2.pc-correctly.patch | 103 ---------------------
> >
> > This patch is still needed in some way. Otherwise freetype-config is
> > broken.
>
> Hmm, wouldn't pkg-config be used instead? Did an application depending
> on freetype break?
Yes, libgd failed to build.
Michael
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-06-20 15:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-17 17:25 [ptxdist] [PATCH v2] libpng: version bump 1.2.54 -> 1.6.29 Clemens Gruber
2017-06-17 17:25 ` [ptxdist] [PATCH v2] freetype: version bump 2.6.3 -> 2.8 Clemens Gruber
2017-06-20 13:54 ` Michael Olbrich
2017-06-20 14:50 ` Clemens Gruber
2017-06-20 15:44 ` Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox