From: Markham Date: Tue, 27 Mar 2018 11:08:42 +0000 (+0200) Subject: fix build of libglib2 X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=708388462c3e089e6f5ac774bbe206a536b8795f;p=bs-cst-neutrino-hd.git fix build of libglib2 --- diff --git a/make/archives.mk b/make/archives.mk index 1b023d4..e989679 100755 --- a/make/archives.mk +++ b/make/archives.mk @@ -70,6 +70,9 @@ $(ARCHIVE)/gettext-$(GETTEXT_VER).tar.xz: $(ARCHIVE)/libffi-$(LIBFFI_VER).tar.gz: $(WGET) ftp://sourceware.org/pub/libffi/libffi-$(LIBFFI_VER).tar.gz +$(ARCHIVE)/glib-$(LIBGLIB2_VER).tar.xz: + $(WGET) https://ftp.gnome.org/pub/gnome/sources/glib/$(LIBGLIB2_VER_MAJOR).$(LIBGLIB2_VER_MINOR)/glib-$(LIBGLIB2_VER).tar.xz + $(ARCHIVE)/libjpeg-turbo-$(JPEG_TURBO_VER).tar.gz: $(WGET) http://sourceforge.net/projects/libjpeg-turbo/files/$(JPEG_TURBO_VER)/libjpeg-turbo-$(JPEG_TURBO_VER).tar.gz diff --git a/make/versions.mk b/make/versions.mk index f6962c0..e363368 100644 --- a/make/versions.mk +++ b/make/versions.mk @@ -82,8 +82,15 @@ LIBASS_VER=0.14.0 # libdvbsi++; libdvbsi++ is a open source C++ library for parsing DVB Service Information and MPEG-2 Program Specific Information. LIBDVBSI_GIT=ff57e5 +# The libffi library is useful to anyone trying to build a bridge between interpreted and natively compiled code LIBFFI_VER = 3.2.1 +# GLib is a general-purpose utility library, which provides many useful data types, macros, type conversions, string utilities, file utilities, a main loop abstraction, and so on +LIBGLIB2_VER_MAJOR = 2 +LIBGLIB2_VER_MINOR = 54 +LIBGLIB2_VER_MICRO = 0 +LIBGLIB2_VER = $(LIBGLIB2_VER_MAJOR).$(LIBGLIB2_VER_MINOR).$(LIBGLIB2_VER_MICRO) + # libpng; reference library for reading and writing PNGs LIBPNG_VER=1.6.34