Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
From f40143f7acca81b7d39d774ed4c349aec8d9310b Mon Sep 17 00:00:00 2001
|
||||
From: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
Date: Sat, 23 Sep 2017 11:37:23 +0200
|
||||
Subject: [PATCH] Form.cc: include ctype.h to fix build error
|
||||
|
||||
Fixes
|
||||
Form.cc:546:28: error: 'isdigit' was not declared in this scope
|
||||
Form.cc:548:34: error: 'isxdigit' was not declared in this scope
|
||||
Form.cc:575:40: error: 'isxdigit' was not declared in this scope
|
||||
|
||||
detected by buildroot autobuilders:
|
||||
http://autobuild.buildroot.net/results/a6a/a6a336f8b6a0136b204a34091e33dc4598178125/
|
||||
when cross-compiling with
|
||||
gcc version 4.7.3 (crosstool-NG hg+-c65fcf8a34b7)
|
||||
|
||||
Patch sent upstream: https://bugs.freedesktop.org/show_bug.cgi?id=102951
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
||||
---
|
||||
poppler/Form.cc | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/poppler/Form.cc b/poppler/Form.cc
|
||||
index 83bceb20..e7efae95 100644
|
||||
--- a/poppler/Form.cc
|
||||
+++ b/poppler/Form.cc
|
||||
@@ -32,6 +32,7 @@
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
+#include <ctype.h>
|
||||
#include "goo/gmem.h"
|
||||
#include "goo/GooString.h"
|
||||
#include "Error.h"
|
||||
--
|
||||
2.11.0
|
||||
|
||||
@@ -6,7 +6,8 @@ config BR2_PACKAGE_POPPLER
|
||||
select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7
|
||||
help
|
||||
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
||||
Poppler is a PDF rendering library based on the xpdf-3.0
|
||||
code base.
|
||||
|
||||
http://poppler.freedesktop.org/
|
||||
|
||||
@@ -15,15 +16,11 @@ if BR2_PACKAGE_POPPLER
|
||||
config BR2_PACKAGE_POPPLER_QT
|
||||
bool "Qt support"
|
||||
depends on BR2_PACKAGE_QT
|
||||
depends on !BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19405 # Qt GUI module
|
||||
select BR2_PACKAGE_QT_GUI_MODULE
|
||||
select BR2_PACKAGE_QT_XML
|
||||
help
|
||||
Build Qt support into the Poppler library
|
||||
|
||||
comment "poppler Qt support needs a toolchain not affected by Binutils bug 19405"
|
||||
depends on BR2_TOOLCHAIN_HAS_BINUTILS_BUG_19405
|
||||
|
||||
config BR2_PACKAGE_POPPLER_QT5
|
||||
bool "Qt5 support"
|
||||
depends on BR2_PACKAGE_QT5
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 e997c9ad81a8372f2dd03a02b00692b8cc479c220340c8881edaca540f402c1f poppler-0.51.0.tar.xz
|
||||
sha256 a3d626b24cd14efa9864e12584b22c9c32f51c46417d7c10ca17651f297c9641 poppler-0.59.0.tar.xz
|
||||
|
||||
@@ -4,16 +4,20 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
POPPLER_VERSION = 0.51.0
|
||||
POPPLER_VERSION = 0.59.0
|
||||
POPPLER_SOURCE = poppler-$(POPPLER_VERSION).tar.xz
|
||||
POPPLER_SITE = http://poppler.freedesktop.org
|
||||
POPPLER_DEPENDENCIES = fontconfig host-pkgconf
|
||||
POPPLER_LICENSE = GPLv2+
|
||||
POPPLER_LICENSE = GPL-2.0+
|
||||
POPPLER_LICENSE_FILES = COPYING
|
||||
POPPLER_INSTALL_STAGING = YES
|
||||
POPPLER_CONF_OPTS = --with-font-configuration=fontconfig \
|
||||
--enable-xpdf-headers
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
POPPLER_CONF_ENV += LDFLAGS="$(TARGET_LDFLAGS) -latomic"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CAIRO),y)
|
||||
POPPLER_CONF_OPTS += --enable-cairo-output
|
||||
POPPLER_DEPENDENCIES += cairo
|
||||
@@ -46,10 +50,10 @@ POPPLER_CONF_OPTS += --disable-libtiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_JPEG),y)
|
||||
POPPLER_CONF_OPTS += --enable-libjpeg
|
||||
POPPLER_CONF_OPTS += --enable-dctdecoder=libjpeg
|
||||
POPPLER_DEPENDENCIES += jpeg
|
||||
else
|
||||
POPPLER_CONF_OPTS += --disable-libjpeg
|
||||
POPPLER_CONF_OPTS += --enable-dctdecoder=none
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
||||
@@ -66,7 +70,7 @@ else
|
||||
POPPLER_CONF_OPTS += --disable-zlib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_POPPLER_LIBCURL),y)
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
POPPLER_CONF_OPTS += --enable-libcurl
|
||||
POPPLER_DEPENDENCIES += libcurl
|
||||
else
|
||||
@@ -100,7 +104,7 @@ endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENJPEG),y)
|
||||
POPPLER_DEPENDENCIES += openjpeg
|
||||
POPPLER_CONF_OPTS += --enable-libopenjpeg
|
||||
POPPLER_CONF_OPTS += --enable-libopenjpeg=openjpeg2
|
||||
else
|
||||
POPPLER_CONF_OPTS += --enable-libopenjpeg=none
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user